speak_response
Generate spoken responses from text in multiple languages and emotions using Claude integration. Allows customization of tone and language for precise TTS output.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
emotion | No | neutral | |
language | No | en-us | |
text | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"emotion": {
"default": "neutral",
"enum": [
"neutral",
"happy",
"sad",
"angry"
],
"type": "string"
},
"language": {
"default": "en-us",
"type": "string"
},
"text": {
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
}