mirror of
https://github.com/home-assistant/developers.home-assistant.git
synced 2025-07-29 12:16:30 +00:00
Fix Mermaid graph on voice docs (#2631)
* [Fix] Mermaid graph on voice docs Mermaid arrows' messages were treated as markdown lists, making the renderer fail both in GitHub and HomeAssistant's webpage. Adding `\` before the dots prevents this from happening and removes the error "Unsupported markdown: list", displaying the useful documentation instead. * Update docs/voice/overview.md Co-authored-by: Abílio Costa <abmantis@users.noreply.github.com> --------- Co-authored-by: Abílio Costa <abmantis@users.noreply.github.com>
This commit is contained in:
parent
f3e6cf205f
commit
ae259eb1fb
@ -14,16 +14,16 @@ graph TD;
|
||||
C[Conversation]
|
||||
I[Intent]
|
||||
TTS[Text-to-Speech]
|
||||
U -->|1. Speech + Metadata| VA;
|
||||
VA -->|2. Speech| STT
|
||||
STT -->|3. Sentence| VA
|
||||
VA -->|4. Sentence +\n Metadata| C
|
||||
C -->|5. Intent| I
|
||||
I -->|6. Intent Response| C;
|
||||
C -->|7. Intent Response| VA;
|
||||
VA -->|8. Intent Response| TTS
|
||||
TTS -->|9. Response Audio| VA
|
||||
VA -->|10. Response Audio| U
|
||||
U -->|1\. Speech + Metadata| VA;
|
||||
VA -->|2\. Speech| STT
|
||||
STT -->|3\. Sentence| VA
|
||||
VA -->|4\. Sentence + Metadata| C
|
||||
C -->|5\. Intent| I
|
||||
I -->|6\. Intent Response| C;
|
||||
C -->|7\. Intent Response| VA;
|
||||
VA -->|8\. Intent Response| TTS
|
||||
TTS -->|9\. Response Audio| VA
|
||||
VA -->|10\. Response Audio| U
|
||||
```
|
||||
|
||||
- The **Assist Pipeline** integration is responsible for turning the user's speech into text, get it processed, and turn the response into speech.
|
||||
|
Loading…
x
Reference in New Issue
Block a user