Create Transcription
Initiates the transcription process for a given audio or video file
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_TRANSCRIPTION_ACTION])
Generate Meeting Summary
Creates a summary of a transcribed meeting
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.GENERATE_MEETING_SUMMARY_ACTION])
Identify Speakers
Identifies and labels different speakers in a transcription
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.IDENTIFY_SPEAKERS_ACTION])
Generate Transcript Highlights
Creates a highlight reel of key moments from a transcription
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.GENERATE_TRANSCRIPT_HIGHLIGHTS_ACTION])
Export Transcription
Exports a transcription in various formats (e.g., TXT, SRT, VTT)
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.EXPORT_TRANSCRIPTION_ACTION])
Search Transcription
Searches for specific terms or phrases within a transcription
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SEARCH_TRANSCRIPTION_ACTION])
Set Custom Vocabulary
Adds custom vocabulary to improve transcription accuracy
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SET_CUSTOM_VOCABULARY_ACTION])
Generate Word Cloud
Creates a word cloud visualization based on transcription content
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.GENERATE_WORD_CLOUD_ACTION])
Translate Transcription
Translates a transcription into a specified target language
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TRANSLATE_TRANSCRIPTION_ACTION])
Redact Sensitive Information
Removes or masks sensitive information from a transcription
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.REDACT_SENSITIVE_INFO_ACTION])
Generate Meeting Metrics
Calculates various metrics about the meeting (e.g., talk time per participant)
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.GENERATE_MEETING_METRICS_ACTION])
Create Chapters
Divides a long transcription into logical chapters or segments
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_CHAPTERS_ACTION])
Generate Transcript Quiz
Creates a quiz based on the content of a transcription
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.GENERATE_TRANSCRIPT_QUIZ_ACTION])
Identify Questions
Extracts questions asked during a transcribed conversation or meeting
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.IDENTIFY_QUESTIONS_ACTION])
Generate Topic List
Creates a list of main topics discussed in a transcription
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.GENERATE_TOPIC_LIST_ACTION])
Detect Filler Words
Identifies and counts filler words used in a transcription
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DETECT_FILLER_WORDS_ACTION])
Create Transcript Timeline
Generates a visual timeline of key moments in a transcription
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_TRANSCRIPT_TIMELINE_ACTION])
Analyze Speaker Emotions
Analyzes the emotional states of speakers throughout a transcription
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ANALYZE_SPEAKER_EMOTIONS_ACTION])
New Transcription
Triggered when a new audio or video file is transcribed
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_TRANSCRIPTION_TRIGGER])
Transcription Completed
Triggered when a transcription process is fully completed
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TRANSCRIPTION_COMPLETED_TRIGGER])
New Meeting Summary
Triggered when a new meeting summary is generated
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_MEETING_SUMMARY_TRIGGER])
New Action Item
Triggered when a new action item is identified in a transcription
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_ACTION_ITEM_TRIGGER])
Sentiment Analysis Completed
Triggered when sentiment analysis for a transcription is completed
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SENTIMENT_ANALYSIS_COMPLETED_TRIGGER])
New Speaker Identified
Triggered when a new speaker is identified in a transcription
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_SPEAKER_IDENTIFIED_TRIGGER])
Transcription Error
Triggered when an error occurs during the transcription process
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TRANSCRIPTION_ERROR_TRIGGER])
New Keyword Detected
Triggered when a specific keyword is detected in a transcription
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_KEYWORD_DETECTED_TRIGGER])
Transcription Language Detected
Triggered when the language of the transcription is detected
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TRANSCRIPTION_LANGUAGE_DETECTED_TRIGGER])
Meeting Duration Threshold Reached
Triggered when a meeting exceeds a specified duration threshold
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.MEETING_DURATION_THRESHOLD_TRIGGER])