Create Conversation
Creates a new conversation in Enterpret
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_CONVERSATION_ACTION])
Add Feedback
Adds new feedback to the Enterpret system
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ADD_FEEDBACK_ACTION])
Update Sentiment
Updates the sentiment of a specific piece of feedback
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_SENTIMENT_ACTION])
Create Tag
Creates a new tag in the Enterpret system
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_TAG_ACTION])
Categorize Feedback
Assigns a category to a specific piece of feedback
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CATEGORIZE_FEEDBACK_ACTION])
Mark Feedback As Urgent
Marks a piece of feedback as urgent or high-priority
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.MARK_URGENT_FEEDBACK_ACTION])
Assign Feedback
Assigns a piece of feedback to a specific team member
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ASSIGN_FEEDBACK_ACTION])
Generate Report
Generates a report based on specified feedback criteria
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.GENERATE_REPORT_ACTION])
Update Feedback Status
Updates the status of a piece of feedback (e.g., open, closed, in progress)
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_FEEDBACK_STATUS_ACTION])
Create Custom Field
Creates a new custom field for feedback in Enterpret
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_CUSTOM_FIELD_ACTION])
Export Data
Exports feedback data from Enterpret in a specified format
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.EXPORT_DATA_ACTION])
Create Insight
Manually creates a new insight in the Enterpret system
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_INSIGHT_ACTION])
Set Up Alert
Creates a new alert based on specified feedback criteria
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SET_UP_ALERT_ACTION])
Update User Permissions
Updates the permissions for a user in the Enterpret system
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_USER_PERMISSIONS_ACTION])
Create Feedback Source
Adds a new source of feedback to the Enterpret system
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_FEEDBACK_SOURCE_ACTION])
Archive Feedback
Archives old or irrelevant feedback in the Enterpret system
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ARCHIVE_FEEDBACK_ACTION])
Create Segment
Creates a new segment for analyzing specific subsets of feedback
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_SEGMENT_ACTION])
Update Integration
Updates the settings for an existing integration in Enterpret
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_INTEGRATION_ACTION])
Bulk Tag Update
Applies or removes tags from multiple pieces of feedback at once
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.BULK_TAG_UPDATE_ACTION])
New Conversation
Triggered when a new conversation is started in Enterpret
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_CONVERSATION_TRIGGER])
New Feedback
Triggered when new feedback is received from a customer
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_FEEDBACK_TRIGGER])
Sentiment Change
Triggered when the overall sentiment of feedback changes significantly
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SENTIMENT_CHANGE_TRIGGER])
Topic Trend
Triggered when a new topic trend is identified in customer feedback
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TOPIC_TREND_TRIGGER])
Feedback Volume Spike
Triggered when there's a sudden increase in feedback volume
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.FEEDBACK_VOLUME_SPIKE_TRIGGER])
Category Change
Triggered when feedback is recategorized or a new category is added
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CATEGORY_CHANGE_TRIGGER])
Urgent Feedback
Triggered when feedback is marked as urgent or high-priority
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.URGENT_FEEDBACK_TRIGGER])
New Tag Created
Triggered when a new tag is created in the Enterpret system
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_TAG_CREATED_TRIGGER])
Feedback Response
Triggered when a team member responds to customer feedback
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.FEEDBACK_RESPONSE_TRIGGER])
Insight Generated
Triggered when Enterpret generates a new insight from feedback data
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.INSIGHT_GENERATED_TRIGGER])