From d7e0e94c85e5bf132cfce502b8ba74716a569059 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Thu, 20 Apr 2023 09:32:11 -0400 Subject: [PATCH] Rename Voice Assistant to Assist Pipeline (#1753) --- docs/voice/overview.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/voice/overview.md b/docs/voice/overview.md index 5fad5901..89a8e8f5 100644 --- a/docs/voice/overview.md +++ b/docs/voice/overview.md @@ -10,7 +10,7 @@ Building a voice assistant is a complex task. It requires a lot of different tec graph TD; U((User)) STT[Speech-to-Text] - VA[Voice Assistant] + VA[Assist Pipeline] C[Conversation] I[Intent] TTS[Text-to-Speech] @@ -26,7 +26,7 @@ graph TD; VA -->|10. Response Audio| U ``` - - The **Voice Assistant** integration is responsible for turning the user's speech into text, get it processed, and turn the response into speech. _This integration has not been created yet._ + - The **Assist Pipeline** integration is responsible for turning the user's speech into text, get it processed, and turn the response into speech. - The **Conversation** integration is responsible for processing user's text. The built-in conversation agent does this by matching it to an intent. Integrations can provide [custom conversation agents](../core/conversation/custom_agent). - The **Intent** integration is responsible for executing the intent and returning a response. - The **Text-to-Speech** integration is responsible for turning text into speech.