create_group_chat
Create a group chat by specifying a title, optional description, and list of user IDs to invite. Optionally scope to an organization.
Instructions
Create a group chat with the given title and member set.
Args: title: Group chat title (required). description: Optional chat description. users: List of user IDs to invite. Empty/None creates an empty chat. organization_id: Organization to scope the chat to (optional).
Returns: ToolResponse with the new chat's ID and title.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | ||
| users | No | ||
| description | No | ||
| organization_id | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| error | No | Error message if operation failed | |
| message | Yes | Human-readable summary of the result | |
| payload | No | The actual response data | |
| success | Yes | Whether the operation was successful |