yougile_create_group_chat
Create a group chat by specifying users, their roles, and notification settings to enable team communication within YouGile.
Instructions
Create a group chat. Requires users map, userRoleMap, and roleConfigMap. Example: users={'userId': {notified: true}}, userRoleMap={'userId': 'admin'}, roleConfigMap={'admin': {notified: true}}.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | Chat title | |
| users | Yes | Map of userId -> {notified: bool} | |
| userRoleMap | Yes | Map of userId -> role ('admin' or 'user') | |
| roleConfigMap | Yes | Map of role -> config. E.g. {admin: {notified: true}} |