Start Meeting Recording
Starts the recording of a meeting
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.START_MEETING_RECORDING])
Stop Meeting Recording
Stops the recording of a meeting
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.STOP_MEETING_RECORDING])
Generate Meeting Transcript
Generates a transcript of the recorded meeting
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.GENERATE_MEETING_TRANSCRIPT])
Create Action Item
Creates a new action item based on meeting content
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_ACTION_ITEM])
Generate Meeting Summary
Creates an AI-generated summary of the meeting
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.GENERATE_MEETING_SUMMARY])
Add Participant
Adds a new participant to an ongoing or scheduled meeting
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ADD_PARTICIPANT])
Remove Participant
Removes a participant from an ongoing or scheduled meeting
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.REMOVE_PARTICIPANT])
Set Meeting Duration
Sets or updates the scheduled duration of a meeting
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SET_MEETING_DURATION])
Identify Speakers
Identifies and labels different speakers in the meeting transcript
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.IDENTIFY_SPEAKERS])
Add Keyword Alert
Adds a keyword or phrase to trigger alerts when mentioned
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ADD_KEYWORD_ALERT])
Mark Decision Point
Manually marks a point in the meeting as a decision point
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.MARK_DECISION_POINT])
Export Meeting Data
Exports meeting data including transcript, summary, and analytics
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.EXPORT_MEETING_DATA])
Schedule Follow Up Meeting
Schedules a follow-up meeting based on current meeting outcomes
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SCHEDULE_FOLLOWUP_MEETING])
Generate Action Items Report
Creates a report of all action items identified in the meeting
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.GENERATE_ACTION_ITEMS_REPORT])
Assign Task
Assigns a task or action item to a specific participant
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ASSIGN_TASK])
Set Reminder
Sets a reminder for a specific topic or action item
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SET_REMINDER])
Generate Meeting Insights
Generates insights and analytics from the meeting data
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.GENERATE_MEETING_INSIGHTS])
Create Meeting Highlights
Creates a highlight reel of key moments from the meeting
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_MEETING_HIGHLIGHTS])
New Meeting Transcript
Triggered when a new meeting transcript is available
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_MEETING_TRANSCRIPT])
New Action Item
Triggered when a new action item is identified in a meeting
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_ACTION_ITEM])
Sentiment Analysis Complete
Triggered when sentiment analysis for a meeting is completed
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SENTIMENT_ANALYSIS_COMPLETE])
Meeting Summary Generated
Triggered when an AI-generated meeting summary is ready
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.MEETING_SUMMARY_GENERATED])
New Participant Joined
Triggered when a new participant joins a meeting
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_PARTICIPANT_JOINED])
Meeting Duration Exceeded
Triggered when a meeting exceeds its scheduled duration
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.MEETING_DURATION_EXCEEDED])
Speaker Change Detected
Triggered when the active speaker changes during a meeting
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SPEAKER_CHANGE_DETECTED])
Keyword Mentioned
Triggered when a specific keyword or phrase is mentioned in a meeting
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.KEYWORD_MENTIONED])
Decision Point Identified
Triggered when a decision point is identified in the meeting
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DECISION_POINT_IDENTIFIED])