Pone en cola una tarea TTS. Valida la existencia del modelo y del hablante frente al caché local. Devuelve request_id.
{
"Path": "/ai/text-to-voice/lite",
"Method": "post",
"Tag": "AI: TEXT-TO-VOICE-LITE",
"Summary": "Synthesize text to voice",
"Description": "Queues a TTS task. Validates model and speaker existence against the local cache. Returns request_id.",
"consumes": null,
"Parameters": [
{
"name": "text",
"in": "formData",
"description": "Text to synthesize",
"required": true,
"type": "string",
"default": null,
"x-load-url": null,
"x-link-child": null
},
{
"name": "model_id",
"in": "formData",
"description": "Model ID",
"required": true,
"type": "string",
"default": null,
"x-load-url": "/ai/text-to-voice/lite/models",
"x-link-child": "speaker_id"
},
{
"name": "speaker_id",
"in": "formData",
"description": "Speaker ID (if model supports multiple speakers)",
"required": false,
"type": "string",
"default": null,
"x-load-url": null,
"x-link-child": null
}
]
}