Create Feedback
Creates a new feedback item in Gleap
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_FEEDBACK_ACTION])
Update Feedback Status
Updates the status of an existing feedback item
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_FEEDBACK_STATUS_ACTION])
Assign Feedback
Assigns a feedback item to a specific team member
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ASSIGN_FEEDBACK_ACTION])
Change Feedback Priority
Changes the priority of an existing feedback item
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CHANGE_FEEDBACK_PRIORITY_ACTION])
Create User
Creates a new user in the Gleap system
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_USER_ACTION])
Update User
Updates the information of an existing user
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_USER_ACTION])
Delete Feedback
Deletes an existing feedback item from Gleap
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DELETE_FEEDBACK_ACTION])
Merge Feedback
Merges two or more feedback items into one
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.MERGE_FEEDBACK_ACTION])
Add Tag To Feedback
Adds a tag to an existing feedback item
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ADD_TAG_TO_FEEDBACK_ACTION])
Remove Tag From Feedback
Removes a tag from an existing feedback item
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.REMOVE_TAG_FROM_FEEDBACK_ACTION])
Create Project
Creates a new project in Gleap
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_PROJECT_ACTION])
Update Project
Updates the details of an existing project
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_PROJECT_ACTION])
Delete Project
Deletes an existing project from Gleap
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DELETE_PROJECT_ACTION])
Generate Report
Generates a report based on specified criteria
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.GENERATE_REPORT_ACTION])
Send Notification
Sends a notification to specified users or teams
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SEND_NOTIFICATION_ACTION])
Create Team
Creates a new team in the Gleap system
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_TEAM_ACTION])
Add User To Team
Adds a user to an existing team
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ADD_USER_TO_TEAM_ACTION])
Remove User From Team
Removes a user from an existing team
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.REMOVE_USER_FROM_TEAM_ACTION])
Update Feedback Custom Fields
Updates custom fields of an existing feedback item
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_FEEDBACK_CUSTOM_FIELDS_ACTION])
New Feedback
Triggered when a new feedback is submitted through Gleap
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_FEEDBACK_TRIGGER])
New Bug Report
Triggered when a new bug report is submitted
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_BUG_REPORT_TRIGGER])
New Feature Request
Triggered when a new feature request is submitted
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_FEATURE_REQUEST_TRIGGER])
New Crash Report
Triggered when a new crash report is received
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_CRASH_REPORT_TRIGGER])
New User Feedback
Triggered when a new user feedback is submitted
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_USER_FEEDBACK_TRIGGER])
Feedback Status Changed
Triggered when the status of a feedback item changes
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.FEEDBACK_STATUS_CHANGED_TRIGGER])
New User Registered
Triggered when a new user registers in the Gleap system
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_USER_REGISTERED_TRIGGER])
Feedback Assigned
Triggered when a feedback item is assigned to a team member
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.FEEDBACK_ASSIGNED_TRIGGER])
Feedback Priority Changed
Triggered when the priority of a feedback item is changed
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.FEEDBACK_PRIORITY_CHANGED_TRIGGER])