Create Transcript
Generate a transcript from a recorded meeting or video.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_TRANSCRIPT])
Share Transcript
Share a generated transcript with team members or external stakeholders.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SHARE_TRANSCRIPT])
Add Bookmark
Add a bookmark to a specific point in the transcript for easy reference.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ADD_BOOKMARK])
Create Summary
Generate an AI-powered summary of the transcript highlights.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_SUMMARY])
Export Transcript
Export the transcript in various formats (e.g., TXT, PDF, DOCX).
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.EXPORT_TRANSCRIPT])
Tag Participant
Tag a participant in the transcript for easy identification.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TAG_PARTICIPANT])
Search Transcript
Search for specific keywords or phrases within the transcript.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SEARCH_TRANSCRIPT])
Generate Action Items
Automatically extract and compile action items from the transcript.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.GENERATE_ACTION_ITEMS])
Translate Transcript
Translate the transcript into a different language.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TRANSLATE_TRANSCRIPT])
Create Highlight
Highlight important sections of the transcript.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_HIGHLIGHT])
Set Reminder
Set a reminder for a specific point or action item in the transcript.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SET_REMINDER])
Generate Meeting Minutes
Automatically create structured meeting minutes from the transcript.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.GENERATE_MEETING_MINUTES])
Assign Task
Assign a task to a team member based on the transcript content.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ASSIGN_TASK])
Merge Transcripts
Combine multiple transcripts into a single document.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.MERGE_TRANSCRIPTS])
New Transcript Available
Triggered when a new transcript is generated and ready for review.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_TRANSCRIPT_AVAILABLE])
Transcript Shared
Triggered when a transcript is shared with team members or externally.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TRANSCRIPT_SHARED])
Action Item Created
Triggered when a new action item is created from the transcript.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ACTION_ITEM_CREATED])
Transcript Edited
Triggered when changes are made to an existing transcript.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TRANSCRIPT_EDITED])
Bookmark Added
Triggered when a new bookmark is added to the transcript.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.BOOKMARK_ADDED])
Summary Generated
Triggered when an AI-powered summary is created for a transcript.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SUMMARY_GENERATED])
Transcript Exported
Triggered when a transcript is exported to an external format.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TRANSCRIPT_EXPORTED])
Task Assigned
Triggered when a task is assigned to a team member from the transcript.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TASK_ASSIGNED])
Reminder Set
Triggered when a reminder is set for a specific point in the transcript.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.REMINDER_SET])
Transcript Translated
Triggered when a transcript is translated into another language.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TRANSCRIPT_TRANSLATED])
Meeting Minutes Generated
Triggered when meeting minutes are automatically generated from a transcript.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.MEETING_MINUTES_GENERATED])
Highlight Created
Triggered when a new highlight is created in the transcript.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.HIGHLIGHT_CREATED])
Transcripts Merged
Triggered when multiple transcripts are merged into a single document.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TRANSCRIPTS_MERGED])
Participant Tagged
Triggered when a participant is tagged in the transcript.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.PARTICIPANT_TAGGED])