Send Message
Send a message to a specified channel or user in Chat Tuesday.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SEND_MESSAGE])
Create Channel
Create a new channel in Chat Tuesday workspace.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_CHANNEL])
Invite User
Invite a new user to join the Chat Tuesday workspace.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.INVITE_USER])
Update User Status
Update the status of a user in Chat Tuesday.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_STATUS])
Pin Message
Pin a message to a channel in Chat Tuesday.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.PIN_MESSAGE])
Remove User From Channel
Remove a user from a specific channel in Chat Tuesday.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.REMOVE_USER_CHANNEL])
Set Channel Topic
Set or update the topic of a channel in Chat Tuesday.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SET_CHANNEL_TOPIC])
Upload File
Upload a file to a channel or direct message in Chat Tuesday.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPLOAD_FILE])
Create Poll
Create a poll in a Chat Tuesday channel.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_POLL])
Archive Channel
Archive an existing channel in Chat Tuesday workspace.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ARCHIVE_CHANNEL])
Schedule Message
Schedule a message to be sent at a specific time in Chat Tuesday.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SCHEDULE_MESSAGE])
Create Thread
Start a new thread in response to a message in Chat Tuesday.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_THREAD])
Set Channel Description
Set or update the description of a channel in Chat Tuesday.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SET_CHANNEL_DESCRIPTION])
Create User Group
Create a new user group in the Chat Tuesday workspace.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_USER_GROUP])
New Message
Triggered when a new message is posted in a specified channel or by a specific user.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_MESSAGE_TRIGGER])
Channel Created
Triggered when a new channel is created in the Chat Tuesday workspace.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CHANNEL_CREATED_TRIGGER])
User Joined
Triggered when a new user joins the Chat Tuesday workspace.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.USER_JOINED_TRIGGER])
Message Reacted
Triggered when a user adds a reaction to a message in Chat Tuesday.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.MESSAGE_REACTED_TRIGGER])
File Shared
Triggered when a file is shared in a channel or direct message.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.FILE_SHARED_TRIGGER])
User Status Changed
Triggered when a user changes their status in Chat Tuesday.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.USER_STATUS_CHANGED_TRIGGER])
Channel Archived
Triggered when a channel is archived in the Chat Tuesday workspace.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CHANNEL_ARCHIVED_TRIGGER])
Message Pinned
Triggered when a message is pinned in a Chat Tuesday channel.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.MESSAGE_PINNED_TRIGGER])
Poll Created
Triggered when a new poll is created in a Chat Tuesday channel.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.POLL_CREATED_TRIGGER])
User Left Channel
Triggered when a user leaves a channel in Chat Tuesday.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.USER_LEFT_CHANNEL_TRIGGER])
Reminder Set
Triggered when a user sets a reminder in Chat Tuesday.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.REMINDER_SET_TRIGGER])
Message Edited
Triggered when a message is edited in Chat Tuesday.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.MESSAGE_EDITED_TRIGGER])
User Mentioned
Triggered when a user is mentioned in a message in Chat Tuesday.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.USER_MENTIONED_TRIGGER])
Channel Topic Changed
Triggered when the topic of a channel is changed in Chat Tuesday.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CHANNEL_TOPIC_CHANGED_TRIGGER])
New Thread Reply
Triggered when a new reply is added to a thread in Chat Tuesday.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_THREAD_REPLY_TRIGGER])
User Group Created
Triggered when a new user group is created in Chat Tuesday.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.USER_GROUP_CREATED_TRIGGER])