Create Meeting
Create a new Google Meet video conference.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_MEETING])
Schedule Meeting
Schedule a Google Meet video conference for a future date and time.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SCHEDULE_MEETING])
Join Meeting
Join an existing Google Meet video conference using a meeting code or link.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.JOIN_MEETING])
End Meeting
End an ongoing Google Meet video conference for all participants.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.END_MEETING])
Invite Participants
Send invitations to participants for a Google Meet video conference.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.INVITE_PARTICIPANTS])
Remove Participant
Remove a specific participant from an ongoing Google Meet video conference.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.REMOVE_PARTICIPANT])
Mute Participant
Mute the audio of a specific participant in a Google Meet video conference.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.MUTE_PARTICIPANT])
Unmute Participant
Unmute the audio of a specific participant in a Google Meet video conference.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UNMUTE_PARTICIPANT])
Start Recording
Start recording the current Google Meet video conference.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.START_RECORDING])
Stop Recording
Stop recording the current Google Meet video conference.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.STOP_RECORDING])
Share Screen
Start screen sharing in a Google Meet video conference.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SHARE_SCREEN])
Stop Screen Sharing
Stop screen sharing in a Google Meet video conference.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.STOP_SCREEN_SHARING])
Enable Captions
Enable live captions for a Google Meet video conference.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ENABLE_CAPTIONS])
Disable Captions
Disable live captions for a Google Meet video conference.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DISABLE_CAPTIONS])
Create Breakout Rooms
Create breakout rooms in a Google Meet video conference.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_BREAKOUT_ROOMS])
End Breakout Rooms
End all breakout rooms and return participants to the main meeting.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.END_BREAKOUT_ROOMS])
Toggle Hand Raise
Raise or lower the virtual hand for a participant in a Google Meet video conference.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TOGGLE_HAND_RAISE])
Start Q&A Session
Initiate a Q&A session in a Google Meet video conference.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.START_QA_SESSION])
End Q&A Session
End the ongoing Q&A session in a Google Meet video conference.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.END_QA_SESSION])
Change Layout
Change the video layout of a Google Meet video conference.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CHANGE_LAYOUT])
Meeting Started
Triggered when a new Google Meet video conference begins.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.MEETING_STARTED])
Meeting Ended
Triggered when a Google Meet video conference ends.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.MEETING_ENDED])
Participant Joined
Triggered when a new participant joins a Google Meet video conference.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.PARTICIPANT_JOINED])
Participant Left
Triggered when a participant leaves a Google Meet video conference.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.PARTICIPANT_LEFT])
Recording Started
Triggered when recording of a Google Meet video conference begins.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.RECORDING_STARTED])
Recording Stopped
Triggered when recording of a Google Meet video conference ends.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.RECORDING_STOPPED])
Screen Share Started
Triggered when a participant starts sharing their screen in a Google Meet video conference.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SCREEN_SHARE_STARTED])
Screen Share Ended
Triggered when a participant stops sharing their screen in a Google Meet video conference.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SCREEN_SHARE_ENDED])
Hand Raised
Triggered when a participant raises their virtual hand in a Google Meet video conference.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.HAND_RAISED])
Chat Message Sent
Triggered when a chat message is sent in a Google Meet video conference.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CHAT_MESSAGE_SENT])