Logo Data Hunter {store}

Синтезировать текст в голос

Ставит задачу TTS в очередь. Проверяет существование модели и динамика в локальном кеше. Возвращает идентификатор_запроса.
AI: преобразование текста в голос
Loading...
Текущий путь: /ai/text-to-voice/lite

Доступные методы и их схемы JSON.

post Синтезировать текст в голос
AI: преобразование текста в голос

Ставит задачу TTS в очередь. Проверяет существование модели и динамика в локальном кеше. Возвращает идентификатор_запроса.

Схема документа JSON:
{
  "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.",
  "Parameters": [
    {
      "name": "text",
      "in": "formData",
      "description": "Text to synthesize",
      "required": true,
      "type": "string",
      "default": null
    },
    {
      "name": "model_id",
      "in": "formData",
      "description": "Model ID (e.g., ru_RU-denis-medium)",
      "required": true,
      "type": "string",
      "default": null
    },
    {
      "name": "speaker_id",
      "in": "formData",
      "description": "Speaker ID (if model supports multiple speakers)",
      "required": false,
      "type": "string",
      "default": null
    }
  ]
}