Tweak voice stuff (#1621)

This commit is contained in:
Paulus Schoutsen 2023-01-10 10:26:06 -05:00 committed by GitHub
parent 30b68f244e
commit 3f3b13c3ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 8 deletions

View File

@ -7,6 +7,8 @@ import intents from '!!yaml-loader!../../../intents/intents.yaml';
If you don't see your language below, [help us translate!](./contributing)
For a full progress report per language, [click here.](https://home-assistant.github.io/intents/)
<>
<table>
<thead>

View File

@ -3,12 +3,6 @@ title: "Voice in Home Assistant"
sidebar_label: Overview
---
:::info
Voice in Home Assistant is a work in progress. Not all parts described on this page have been implemented.
:::
Building a voice assistant is a complex task. It requires a lot of different technologies to work together. This page will give you an overview of the different parts inside Home Assistant and how they will work together.
@ -32,8 +26,8 @@ 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.
- The **conversation** integration is responsible for processing user's text. It does this by matching it to an intent.
- 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 **Conversation** integration is responsible for processing user's text. It does this by matching it to an intent.
- 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.
- The **Speech-to-Text** integration is responsible for turning speech into text.