Document tts_start_streaming for INTENT-PROGRESS (#2693)

This commit is contained in:
Paulus Schoutsen 2025-06-10 10:59:22 -04:00 committed by GitHub
parent 1ff344309a
commit 41fc4de3a6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -50,7 +50,7 @@ The following events can be emitted:
| `stt-vad-end` | End of voice command | audio only | `timestamp`: time relative to start of audio stream (milliseconds)
| `stt-end` | End of speech to text | audio only | `stt_output` - Object with `text`, the detected text. |
| `intent-start` | Start of intent recognition | always | `engine` - [Agent](/docs/intent_conversation_api) engine used<br />`language`: Processing language. <br /> `intent_input` - Input text to agent |
| `intent-progress` | Intermediate update of intent recognition | depending on conversation agent | `chat_log_delta` - delta object from the [chat log](/docs/core/entity/conversation#chat-log) |
| `intent-progress` | Intermediate update of intent recognition | depending on conversation agent | `chat_log_delta` - optional, delta object from the [chat log](/docs/core/entity/conversation#chat-log) <br /> `tts_start_streaming` - optional, True if TTS streaming has started |
| `intent-end` | End of intent recognition | always | `intent_output` - [conversation response](/docs/intent_conversation_api#conversation-response) |
| `tts-start` | Start of text to speech | audio only | `engine` - TTS engine used<br />`language`: Output language.<br />`voice`: Output voice. <br />`tts_input`: Text to speak. |
| `tts-end` | End of text to speech | audio only | `token` - Token of the generated audio<br />`url` - URL to the generated audio<br />`mime_type` - MIME type of the generated audio<br /> |