Record Meeting
Start recording a meeting using tl;dv.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.RECORD_MEETING])
Stop Recording
Stop an ongoing meeting recording.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.STOP_RECORDING])
Create Highlight
Create a highlight at a specific timestamp in a recorded meeting.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_HIGHLIGHT])
Add Task
Add a new task associated with a specific part of the meeting recording.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ADD_TASK])
Generate Transcript
Manually trigger the generation of a transcript for a recorded meeting.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.GENERATE_TRANSCRIPT])
Share Meeting
Share a recorded meeting with specified users or groups.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SHARE_MEETING])
Create Summary
Generate an AI-powered summary of a recorded meeting.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_SUMMARY])
Edit Transcript
Make edits or corrections to a meeting transcript.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.EDIT_TRANSCRIPT])
Set Reminder
Set a reminder for an upcoming meeting or to review a past recording.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SET_REMINDER])
Tag Meeting
Add tags or labels to a recorded meeting for easier categorization.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TAG_MEETING])
Export Transcript
Export a meeting transcript in various formats (e.g., TXT, PDF).
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.EXPORT_TRANSCRIPT])
Create Clip
Create a short clip from a specific section of a recorded meeting.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_CLIP])
Assign Action Item
Assign an action item from the meeting to a specific team member.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ASSIGN_ACTION_ITEM])
Search Meetings
Search through recorded meetings using keywords or phrases.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SEARCH_MEETINGS])
Schedule Recording
Schedule a future meeting to be automatically recorded by tl;dv.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SCHEDULE_RECORDING])
Generate Meeting Notes
Automatically generate structured meeting notes from a recording.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.GENERATE_MEETING_NOTES])
Translate Transcript
Translate a meeting transcript into a different language.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TRANSLATE_TRANSCRIPT])
Set Privacy Settings
Adjust privacy and sharing settings for a recorded meeting.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SET_PRIVACY_SETTINGS])
Archive Meeting
Move a recorded meeting to the archive for long-term storage.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ARCHIVE_MEETING])
New Meeting Recorded
Triggered when a new meeting is recorded in tl;dv.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_MEETING_RECORDED])
Meeting Transcript Ready
Triggered when the transcript for a recorded meeting is ready.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.MEETING_TRANSCRIPT_READY])
New Highlight Created
Triggered when a new highlight is created in a recorded meeting.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_HIGHLIGHT_CREATED])
New Task Created
Triggered when a new task is created from a meeting recording.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_TASK_CREATED])
Meeting Summary Generated
Triggered when an AI-generated summary of a meeting is ready.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.MEETING_SUMMARY_GENERATED])
Meeting Shared
Triggered when a meeting recording is shared with other users.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.MEETING_SHARED])
Transcript Updated
Triggered when a meeting transcript is manually edited or updated.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TRANSCRIPT_UPDATED])
New Topic Detected
Triggered when a new topic is automatically detected in a meeting.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_TOPIC_DETECTED])
Meeting Reminder Set
Triggered when a reminder is set for an upcoming meeting.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.MEETING_REMINDER_SET])