make_bot_speak
Enable a bot to speak text in meetings using text-to-speech. Specify bot ID, text, and optional voice settings to enhance meeting interactions.
Instructions
Make a bot speak text during a meeting using text-to-speech
Input Schema
Name | Required | Description | Default |
---|---|---|---|
bot_id | Yes | ID of the bot that should speak | |
text | Yes | Text for the bot to speak | |
voice_language_code | No | Voice language code (optional, defaults to 'en-US') | en-US |
voice_name | No | Voice name (optional, defaults to 'en-US-Casual-K') | en-US-Casual-K |
Input Schema (JSON Schema)
{
"properties": {
"bot_id": {
"description": "ID of the bot that should speak",
"type": "string"
},
"text": {
"description": "Text for the bot to speak",
"type": "string"
},
"voice_language_code": {
"default": "en-US",
"description": "Voice language code (optional, defaults to 'en-US')",
"type": "string"
},
"voice_name": {
"default": "en-US-Casual-K",
"description": "Voice name (optional, defaults to 'en-US-Casual-K')",
"type": "string"
}
},
"required": [
"bot_id",
"text"
],
"type": "object"
}