ya
Yandex SpeechKit — это Yandex Cloud's speech technology platform offering text-to-speech (TTS) synthesis и speech-to-text (STT) recognition для Russian и other languages.
С помощью Yandex SpeechKit интеграции в AACFlow можно:
- Text-to-Speech (Synthesize): Convert text to audio in various voices и formats
- Speech-to-Text (Recognize Short): Transcribe short audio files (under 1 minute) to text
Эта интеграция позволяет automated voice response systems, audio content generation, и speech-driven workflow triggers.
Инструкции по использованию
Интегрируйте Yandex SpeechKit в рабочий процесс для add voice synthesis или audio transcription. Требуется Yandex Cloud IAM token. Obtain IAM tokens using the Yandex Cloud IAM block in your workflow.
Инструменты
yandex_speechkit_tts
Text-to-speech synthesis
Входные параметры
| Параметр | Тип | Обязательный | Описание |
|---|---|---|---|
iamToken | string | Да | Yandex Cloud IAM token |
text | string | Да | Text to convert to speech |
voice | string | Нет | Voice name (e.g., oksana, alena, filipp) |
speed | number | Нет | Speech speed (0.1–3.0, default 1.0) |
format | string | Нет | Audio format: ogg_opus, lpcm, mp3 |
Выходные данные
| Параметр | Тип | Описание |
|---|---|---|
audioData | string | Base64-encoded audio data |
mimeType | string | Audio MIME type |
yandex_speechkit_stt
Speech-to-text recognition (short audio)
Входные параметры
| Параметр | Тип | Обязательный | Описание |
|---|---|---|---|
iamToken | string | Да | Yandex Cloud IAM token |
audioData | string | Да | Base64-encoded audio data |
language | string | Нет | Language code (ru-RU, en-US) |
Выходные данные
| Параметр | Тип | Описание |
|---|---|---|
text | string | Recognized text |
confidence | number | Recognition confidence score |
Ссылки
- Official API: https://yandex.cloud/ru/docs/speechkit/
- AACFlow block source: apps/aacflow/blocks/blocks/yandex_speechkit.ts

