diff --git a/docs/voice/pipelines/index.md b/docs/voice/pipelines/index.md index c7560d2e..8ca2284f 100644 --- a/docs/voice/pipelines/index.md +++ b/docs/voice/pipelines/index.md @@ -40,12 +40,12 @@ The following events can be emitted: | Name | Description | Emitted | Attributes | |-----------------|-----------------------------|------------|---------------------------------------------------------------------------------------------------------| | `run-start` | Start of pipeline run | always | `pipeline` - ID of the pipeline
`language` - Language used for pipeline
`runner_data` - Extra WebSocket data: | -| `run-finish` | End of pipeline run | always | | +| `run-end` | End of pipeline run | always | | | `stt-start` | Start of speech to text | audio only | `engine`: STT engine used
`metadata`: incoming audio metadata -| `stt-finish` | 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
`language`: Processing language.
`intent_input` - Input text to agent | -| `intent-finish` | End of intent recognition | always | `intent_output` - [conversation response](/docs/intent_conversation_api#conversation-response) | +| `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
`language`: Processing language.
`intent_input` - Input text to agent | +| `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
`language`: Output language.
`voice`: Output voice.
`tts_input`: Text to speak. | -| `tts-finish` | End of text to speech | audio only | `media_id` - Media Source ID of the generated audio
`url` - URL to the generated audio
`mime_type` - MIME type of the generated audio
| +| `tts-end` | End of text to speech | audio only | `media_id` - Media Source ID of the generated audio
`url` - URL to the generated audio
`mime_type` - MIME type of the generated audio
| | `error` | Error in pipeline | On error | `code` - Error code
`message` - Error message |