Voice control create separate section in docs (#27586)

This commit is contained in:
c0ffeeca7 2023-06-01 13:08:44 +02:00 committed by GitHub
parent 4b94ee3954
commit ce25845e73
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
27 changed files with 97 additions and 56 deletions

View File

@ -39,22 +39,6 @@
</li>
</ul>
</li>
<li>
<b>{% active_link /docs/assist/ Assist %}</b>
<ul>
<li>{% active_link /docs/assist/android/ Assist for Android %}</li>
<li>{% active_link /docs/assist/apple/ Assist for Apple devices %}</li>
<li>{% active_link /docs/assist/builtin_sentences/ Built-in sentences %}</li>
<li>{% active_link /docs/assist/custom_sentences/ Custom sentences %}</li>
<li>{% active_link /docs/assist/using_voice_assistants_overview/ Voice assistants - overview %}</li>
<li>{% active_link /docs/assist/voice_remote_expose_devices/ Exposing devices to your voice assistant %}</li>
<li>{% active_link /docs/assist/voice_remote_local_assistant/ Configuring a local assistant %}</li>
<li>{% active_link /docs/assist/troubleshooting/ Troubleshooting Assist %}</li>
<li>{% active_link /projects/worlds-most-private-voice-assistant/ Tutorial: World's most private voice assistant %}</li>
<li>{% active_link /projects/thirteen-usd-voice-remote/ Tutorial: $13 voice remote %}
</li>
</ul>
</li>
<li>
<b>{% active_link /docs/energy/ Home Energy Management %}</b>
<ul>

View File

@ -0,0 +1,31 @@
<section class="aside-module grid__item one-whole lap-one-half">
{% assign elements = site.dashboards | sort_natural: 'title' %}
<div class="section">
<h1 class="title delta">Devices</h1>
<ul class="divided sidebar-menu">
<li>{% active_link /voice_control/android/ Assist for Android %}</li>
<li>{% active_link /voice_control/apple/ Assist for Apple %}</li>
</ul>
</div>
<div class="section">
<h1 class="title delta">Voice assistants</h1>
<ul class="divided sidebar-menu">
<li>{% active_link /voice_control/using_voice_assistants_overview/ Voice assistants: Overview %}</li>
<li>{% active_link /voice_control/voice_remote_local_assistant/ Configuring a local assistant %}</li>
<li>{% active_link /voice_control/voice_remote_expose_devices/ Exposing devices to voice assistant %}</li>
<li>{% active_link /voice_control/builtin_sentences/ Built-in sentences %}</li>
<li>{% active_link /voice_control/custom_sentences/ Custom sentences %}</li>
<li>{% active_link /voice_control/troubleshooting/ Troubleshooting Assist %}</li>
</ul>
</div>
<div class="section">
<h1 class="title delta">Projects</h1>
<ul class="divided sidebar-menu">
<li>{% active_link /voice_control/worlds-most-private-voice-assistant/ Tutorial: World's most private voice assistant %}</li>
<li>{% active_link /voice_control/thirteen-usd-voice-remote/ Tutorial: $13 voice remote %}</li>
</ul>
</div>
</section>

View File

@ -41,6 +41,9 @@
<li>
<a href="/dashboards/">Dashboards</a>
</li>
<li>
<a href="/voice_control/">Voice control</a>
</li>
</ul>
</li>
<li><a href="/integrations/">Integrations</a></li>

View File

@ -19,6 +19,8 @@
{% include asides/docs_navigation.html %}
{% elsif root == 'faq' %}
{% include asides/faq_navigation.html %}
{% elsif root == 'voice_control' %}
{% include asides/voice_navigation.html %}
{% elsif root == 'hassio' or root == 'addons' %}
{% include asides/hassio_navigation.html %}
{% elsif root == 'cloud' %}

View File

@ -15,7 +15,7 @@ ha_platforms:
- select
---
The Assist pipeline integration provides the foundation for the [Assist](/docs/assist/) voice assistant in Home Assistant.
The Assist pipeline integration provides the foundation for the [Assist](/voice_control/) voice assistant in Home Assistant.
For most users, there is no need to install this integration manually. The Assist pipeline integration is part of the default configuration and is set up automatically if needed by other integrations.
If you are not using the default integration, you need to add the following to your `configuration.yaml` file:
@ -25,4 +25,4 @@ If you are not using the default integration, you need to add the following to y
assist_pipeline:
```
For more information, refer to the procedure on [configuring a pipeline](/docs/assist/voice_remote_local_assistant/).
For more information, refer to the procedure on [configuring a pipeline](/voice_control/voice_remote_local_assistant/).

View File

@ -13,4 +13,4 @@ ha_integration_type: integration
ha_quality_scale: internal
---
The Voice Assistant integration contains logic for running *pipelines*, which perform the common steps of a voice assistant like [Assist](/docs/assist/).
The Voice Assistant integration contains logic for running *pipelines*, which perform the common steps of a voice assistant like [Assist](/voice_control/).

View File

@ -18,7 +18,7 @@ ha_platforms:
ha_config_flow: true
---
The VoIP integration enables users to talk to [Assist](/docs/assist) using an analog phone and a VoIP adapter. Currently, the system works with the [Grandstream HT801](https://amzn.to/40k7mRa). See [the tutorial](/projects/worlds-most-private-voice-assistant) for detailed instructions.
The VoIP integration enables users to talk to [Assist](/voice_control/) using an analog phone and a VoIP adapter. Currently, the system works with the [Grandstream HT801](https://amzn.to/40k7mRa). See [the tutorial](/projects/worlds-most-private-voice-assistant) for detailed instructions.
As an alternative, the [Grandstream HT802](https://www.amazon.com/Grandstream-GS-HT802-Analog-Telephone-Adapter/dp/B01JH7MYKA/) can be used, which is basically the same as the previously mentioned HT801, but has two phone ports, of which Home Assistant currently support using only one of them.

View File

@ -16,7 +16,7 @@ ha_platforms:
ha_config_flow: true
---
The Wyoming integration connects external voice services to Home Assistant using a [small protocol](https://github.com/rhasspy/rhasspy3/blob/master/docs/wyoming.md). This enables [Assist](/docs/assist) to use a variety of local [speech-to-text](/integrations/stt/) and [text-to-speech](/integrations/tts/) systems, such as:
The Wyoming integration connects external voice services to Home Assistant using a [small protocol](https://github.com/rhasspy/rhasspy3/blob/master/docs/wyoming.md). This enables [Assist](/voice_control/) to use a variety of local [speech-to-text](/integrations/stt/) and [text-to-speech](/integrations/tts/) systems, such as:
* Whisper {% my supervisor_addon badge addon="core_whisper" %}
* Piper {% my supervisor_addon badge addon="core_piper" %}

View File

@ -32,7 +32,7 @@ We want Assist to be as accessible to as many people as possible. To do this, we
Assist is enabled by default in the Home Assistant 2023.2 release. Tap the new Assist icon <img src='/images/assist/assist-icon.svg' alt='Assist icon' style='height: 32px' class='no-shadow'> at the top right of the dashboard to use it.
[Assist documentation.](https://www.home-assistant.io/docs/assist/)
[Assist documentation.](https://www.home-assistant.io/voice_control/)
<img src="/images/blog/2023-01-26-year-of-the-voice-chapter-1/assist-dialog.png" alt="Screenshot of the Assist dialog" class='no-shadow' />
@ -40,7 +40,7 @@ Assist is enabled by default in the Home Assistant 2023.2 release. Tap the new A
We want to make it as easy as possible to use Assist. To enable this for Android users, we have added a new tile to the Android Wear app. A simple swipe from the clock face will show the assist button and allows you to send voice commands.
[Assist on Android Wear documentation.](https://www.home-assistant.io/docs/assist/android/)
[Assist on Android Wear documentation.](https://www.home-assistant.io/voice_control/android/)
_The tile is available in [Home Assistant Companion for Android 2023.1.1](https://play.google.com/store/apps/details?id=io.homeassistant.companion.android&pcampaignid=pcampaignidMKT-Other-global-all-co-prtnr-py-PartBadge-Mar2515-1&pcampaignid=pcampaignidMKT-Other-global-all-co-prtnr-py-PartBadge-Mar2515-1)._
@ -50,7 +50,7 @@ _The tile is available in [Home Assistant Companion for Android 2023.1.1](https:
For Apple devices we have been able to create a fully hands-free experience by integrating with Siri. This is powered by a new Apple Shortcut action called Assist, which is part of the Home Assistant app. This shortcut action can also be manually triggered from your Mac taskbar, iPhone home screen or Apple Watch complication. We have two ready-made shortcuts that users can import from the documentation with a single tap to unlock these features.
[Assist via Siri and Apple Shortcuts documentation.](https://www.home-assistant.io/docs/assist/apple/)
[Assist via Siri and Apple Shortcuts documentation.](https://www.home-assistant.io/voice_control/apple/)
_The Assist shortcut is available in [Home Assistant Companion for iOS 2023.2](https://apps.apple.com/us/app/home-assistant/id1099568401?itsct=apps_box_badge&itscg=30200). Mac version is awaiting approval._
@ -66,7 +66,7 @@ With Home Assistant we believe that every home is uniquely yours and that [techn
Assist includes support for custom sentences, responses and intents, allowing you to achieve all of the above, and more. We've designed the custom sentence format in a way that it can be easily shared with the community.
Read [the documentation](https://www.home-assistant.io/docs/assist/custom_sentences) on how to get started.
Read [the documentation](https://www.home-assistant.io/voice_control/custom_sentences) on how to get started.
_In a future release we're planning on adding a user interface to customize and import sentences._

View File

@ -89,7 +89,7 @@ Go ahead, it is enabled by default; just tap the new Assist icon
at the top right of your dashboard to start using it.
Oh, and we are also releasing some fun stuff we've cooked up along the way!
[Read more about Assist](/docs/assist/) and other released voice features in the
[Read more about Assist](/voice_control/) and other released voice features in the
[Chapter 1: Assist](/blog/2023/01/26/year-of-the-voice-chapter-1/) blogpost
and a [video presentation (including live demos) on YouTube](https://www.youtube.com/live/ixgNT3RETPg).

View File

@ -27,7 +27,7 @@ _To watch the video presentation of this blog post, including live demos, check
[Chapter 1]: https://www.home-assistant.io/blog/2023/01/26/year-of-the-voice-chapter-1/
[45 languages]: https://home-assistant.github.io/intents/
[live-stream]: https://youtube.com/live/Tk-pnm7FY7c?feature=share
[assist]: /docs/assist/
[assist]: /voice_control/
<!--more-->
@ -52,7 +52,7 @@ Screenshot of the new Assist debug tool.
</p>
[Assist Pipeline integration]: https://www.home-assistant.io/integrations/assist_pipeline/
[Assist dialog]: /docs/assist/
[Assist dialog]: /voice_control/
## Voice Assistant powered by Home Assistant Cloud
@ -131,7 +131,7 @@ Today were launching support for building voice assistants using ESPHome. Con
Weve been focusing on the [M5STACK ATOM Echo][atom-echo] for testing and development. For $13 it comes with a microphone and a speaker in a nice little box. Weve created a tutorial to turn this device into a voice remote directly from your browser!
[Tutorial: create a $13 voice remote for Home Assistant.](https://www.home-assistant.io/projects/thirteen-usd-voice-remote/)
[Tutorial: create a $13 voice remote for Home Assistant.](https://www.home-assistant.io/voice_control/thirteen-usd-voice-remote/)
[ESPHome Voice Assistant documentation.](https://esphome.io/components/voice_assistant.html)
@ -152,7 +152,7 @@ By configuring off-hook autodial, your phone will automatically call Home Assist
Weve focused our initial efforts on supporting [the Grandstream HT801 Voice-over-IP box][ht801]. It works with any phone with an RJ11 connector, and connects directly to Home Assistant. There is no need for an extra server.
[Tutorial: create your own Worlds Most Private Voice Assistant](https://www.home-assistant.io/projects/worlds-most-private-voice-assistant/)
[Tutorial: create your own Worlds Most Private Voice Assistant](https://www.home-assistant.io/voice_control/worlds-most-private-voice-assistant/)
<p class='img'>

View File

@ -87,10 +87,10 @@ To help you get started, we made sure the documentation is perfect, including
some cool project tutorials to jump-start your own private voice assistant
journey:
- [The world's most private voice assistant](/projects/worlds-most-private-voice-assistant/)
- [Giving your voice assistant a Super Mario personality using OpenAI](/projects/worlds-most-private-voice-assistant/#give-your-voice-assistant-personality-using-the-openai-integration)
- [Installing a local Assist pipeline](/docs/assist/voice_remote_local_assistant/)
- [The $13 tiny ESPHome-based voice assistant](/projects/thirteen-usd-voice-remote/)
- [The world's most private voice assistant](/voice_control/worlds-most-private-voice-assistant/)
- [Giving your voice assistant a Super Mario personality using OpenAI](/voice_control/worlds-most-private-voice-assistant/#give-your-voice-assistant-personality-using-the-openai-integration)
- [Installing a local Assist pipeline](/voice_control/voice_remote_local_assistant/)
- [The $13 tiny ESPHome-based voice assistant](/voice_control/thirteen-usd-voice-remote/)
If you missed [last week's live stream](https://www.youtube.com/watch?v=Tk-pnm7FY7c),
be sure to check it out. It is full of live demos and detailed explanations
@ -123,7 +123,7 @@ manage the entity's aliases.
<img class="no-shadow" src='/images/blog/2023-05/voice-assistants-expose-entities-settings.png' alt='Screenshot showing the new expose entities tab in the voice assistants menu.'>
This currently supports our [Assist](/docs/assist), and Amazon Alexa and
This currently supports our [Assist](/voice_control/), and Amazon Alexa and
Google Assistant via Home Assistant Cloud.
## Improved entity setting
@ -277,7 +277,7 @@ findability. This one is new:
[@tronikos]: https://github.com/tronikos
[android tv remote]: /integrations/androidtv_remote
[Anova]: /integrations/anova
[assist]: /docs/assist
[assist]: /voice_control/
[Intellifire]: /integrations/intellifire
[Monessen]: /integrations/monessen
[RAPT Bluetooth]: /integrations/rapt_ble

View File

@ -218,6 +218,17 @@ layout: null
# Moved documentation
/details/database /docs/backend/database
/details/updater /docs/backend/updater
/docs/assist/ /voice_control/
/docs/assist/android/ /voice_control/android/
/docs/assist/apple/ /voice_control/apple/
/docs/assist/builtin_sentences/ /voice_control/builtin_sentences/
/docs/assist/custom_sentences/ /voice_control/custom_sentences/
/docs/assist/using_voice_assistants_overview/ /voice_control/using_voice_assistants_overview/
/docs/assist/voice_remote_expose_devices/ /voice_control/voice_remote_expose_devices/
/docs/assist/voice_remote_local_assistant/ /voice_control/voice_remote_local_assistant/
/docs/assist/troubleshooting/ /voice_control/troubleshooting/
/docs/assist/worlds-most-private-voice-assistant/ /voice_control/worlds-most-private-voice-assistant/
/docs/assist/thirteen-usd-voice-remote/ /voice_control/thirteen-usd-voice-remote/
/docs/backend/updater /integrations/analytics
/docs/ecosystem/ios/ https://companion.home-assistant.io/
/docs/ecosystem/ios/devices_file https://companion.home-assistant.io/

View File

@ -37,6 +37,12 @@ The documentation covers beginner to advanced topics around the installation, se
</div>
<div class='title'>Android and iOS</div>
</a>
<a class='option-card' href='/voice_control/'>
<div class='img-container'>
<img src='/images/assist/assist-icon.svg' />
</div>
<div class='title'>Voice control</div>
</a>
</div>
<br/>

View File

@ -102,7 +102,7 @@ feedback: false
></a>
<!-- Tutorial: setup private voice assistant over phone -->
<a
href="/projects/worlds-most-private-voice-assistant/"
href="/voice_control/worlds-most-private-voice-assistant/"
target="_blank"
class="material-card picture-promo"
style="

View File

@ -6,4 +6,4 @@ Assist will use the names of your entities, as well as any aliases you've config
![Alias example](/images/blog/2023-01/aliases-cloud-multi-language.png)
By adding aliases in your native language, you can speak to Home Assistant with the language configured on your [Android watch](/docs/assist/android/) or [Apple device](/docs/assist/apple/).
By adding aliases in your native language, you can speak to Home Assistant with the language configured on your [Android watch](/voice_control/android/) or [Apple device](/voice_control/apple/).

View File

@ -22,9 +22,9 @@ In addition to individual entities, commands can target **areas**:
* *"change kitchen brightness to 50%"*
* *"set bedroom lights to green"*
Entity [aliases](/docs/assist/aliases) are also matched so multiple names can be used, even in different languages.
Entity [aliases](/voice_control/aliases) are also matched so multiple names can be used, even in different languages.
You can extend the built-in sentences or [add your own](/docs/assist/custom_sentences) to trigger any action in Home Assistant.
You can extend the built-in sentences or [add your own](/voice_control/custom_sentences) to trigger any action in Home Assistant.
## View existing sentences
@ -55,6 +55,6 @@ To get an idea of the specific sentences that are supported for your language, y
* () mean alternative elements.
* [] mean optional elements.
* <> mean an expansion rule. The view these rules, search for `expansion_rules` in the [_common.yaml](https://github.com/home-assistant/intents/blob/main/sentences/en/_common.yaml) file.
* The syntax is explained in detail in the [template sentence syntax documentation](https://developers.home-assistant.io/docs/voice/intent-recognition/template-sentence-syntax).
* The syntax is explained in detail in the [template sentence syntax documentation](https://developers.home-assistant.io/docs/voice_control/intent-recognition/template-sentence-syntax).

View File

@ -4,15 +4,19 @@ title: Assist - Talking to Home Assistant
<img src='/images/assist/assist-logo.png' class='no-shadow' alt='Assist logo' style='width: 150px; float: right'>
Assist is our feature to allow you to control Home Assistant using natural language. It is built on top of an open voice foundation and powered by knowledge provided by our community. You can use the [built-in sentences](/docs/assist/builtin_sentences) to control entities and areas, or [create your own](/docs/assist/custom_sentences).
Assist is our feature to allow you to control Home Assistant using natural language. It is built on top of an open voice foundation and powered by knowledge provided by our community.
_Want to use Home Assistant with Google Assistant or Amazon Alexa? Get started with [Home Assistant Cloud](https://www.nabucasa.com/config/)._
With Assist, you can use the [built-in sentences](/voice_control/builtin_sentences) to control entities and areas, or [create your own](/voice_control/custom_sentences).
[List of supported languages.](https://developers.home-assistant.io/docs/voice/intent-recognition/supported-languages)
Assist is available to use on most platforms that can interface with Home Assistant. Look for the Assist icon <img src='/images/assist/assist-icon.svg' alt='Assist icon' style='height: 32px' class='no-shadow'>:
- Inside the Home Assistant app in the top-right corner
- On Apple devices via [Siri and Assist shortcuts](/docs/assist/apple)
- On Wear OS watches using [Assist tile](/docs/assist/android)
- On Apple devices via [Siri and Assist shortcuts](/voice_control/apple)
- On Wear OS watches using [Assist tile](/voice_control/android)
Did Assist not understand your sentence? [Contribute them.](https://developers.home-assistant.io/docs/voice/intent-recognition/)

View File

@ -12,7 +12,7 @@ your smart home. Issue commands and get responses!
## Required material
* Home Assistant 2023.5 or later
* [Home Assistant Cloud](https://www.nabucasa.com) or a manually configured [Assist Pipeline](/docs/assist/voice_remote_local_assistant)
* [Home Assistant Cloud](https://www.nabucasa.com) or a manually configured [Assist Pipeline](/voice_control/voice_remote_local_assistant)
* The password to your 2.4&nbsp;GHz Wi-Fi network
* Chrome (or a Chromium-based browser like Edge) on desktop (not Android/iOS)
* [M5Stack ATOM Echo Development Kit](https://shop.m5stack.com/products/atom-echo-smart-speaker-dev-kit?ref=NabuCasa)
@ -64,7 +64,7 @@ Before you can use this device with Home Assistant, you need to install a bit of
1. Press and hold the button on your ATOM Echo.
* The LED should light up in blue.
1. Say a [supported voice command](/docs/assist/builtin_sentences/). For example, *Turn off the light in the kitchen*.
1. Say a [supported voice command](/voice_control/builtin_sentences/). For example, *Turn off the light in the kitchen*.
* Make sure youre using the area name exactly as you defined it in Home Assistant.
* You can also ask a question, such as
* *Is the front door locked?*
@ -78,4 +78,4 @@ Before you can use this device with Home Assistant, you need to install a bit of
Are things not working as expected?
* Checkout the [general troubleshooting section for Assist](/docs/assist/troubleshooting/).
* Checkout the [general troubleshooting section for Assist](/voice_control/troubleshooting/).

View File

@ -26,7 +26,7 @@ This section lists a few steps that may help you troubleshoot issues with Assist
1. Check if it worked.
![Open the pipeline debug dialog](/images/assist/assistant-debug-pipeline-03.png)
* If the phrase does not work, try a variant. For example, if *Turn off the light* doesn't work, try: *Turn off the lights in the kitchen*.
* Check if your phrase is [supported](/docs/assist/builtin_sentences/).
* Check if your phrase is [supported](/voice_control/builtin_sentences/).
* Make sure you are using the name of the area as it is defined in Home Assistant. If you have a room called *bathroom*, the phrase *Turning on the lights in the bath* wont work.

View File

@ -7,9 +7,9 @@ We can now turn speech into text and text back into speech. Wake word detection
The video below provides a good overview of what is currently possible with voice assistants. It shows you the following:
* How to voice-control devices using the Assist button, an [analog phone](/projects/worlds-most-private-voice-assistant/), or an [ATOM Echo](/projects/thirteen-usd-voice-remote/).
* How to [expose devices to Assist](/docs/assist/voice_remote_expose_devices/).
* How to set up a [local voice assistant](/docs/assist/voice_remote_local_assistant/).
* How to voice-control devices using the Assist button, an [analog phone](/voice_control/worlds-most-private-voice-assistant/), or an [ATOM Echo](/voice_control/thirteen-usd-voice-remote/).
* How to [expose devices to Assist](/voice_control/voice_remote_expose_devices/).
* How to set up a [local voice assistant](/voice_control/voice_remote_local_assistant/).
* The video also shows the differences in processing speed. It compares:
* Home Assistant Cloud versus local processing,
* local processing on more or less powerful hardware.

View File

@ -45,7 +45,7 @@ For the quickest way to get your local Assist pipeline started, follow these ste
* Under **Text-to-speech**, select **piper**.
* Depending on your language, you may be able to select different language variants.
1. That's it. You ensured your voice commands can be processed locally on your device.
1. If you haven't done so yet, [expose your devices to Assist](/docs/assist/voice_remote_expose_devices/#exposing-your-devices).
1. If you haven't done so yet, [expose your devices to Assist](/voice_control/voice_remote_expose_devices/#exposing-your-devices).
* Otherwise you won't be able to control them by voice.

View File

@ -53,14 +53,14 @@ your smart home and issue commands and get responses.
* You should now hear the message *This is your smart home speaking. Your phone is connected, but you must configure it within Home Assistant.*
* The integration should now include a device and entities.
![Voice over IP integration with device and entities](/images/assist/voip_device_available.png)
* Don't hear the voice? Try these [troubleshooting steps](/projects/worlds-most-private-voice-assistant/#troubleshoot-grandstream).
* Don't hear the voice? Try these [troubleshooting steps](/voice_control/worlds-most-private-voice-assistant/#troubleshoot-grandstream).
1. Allow calls.
* Calls from new devices are blocked by default since voice commands could be used to control sensitive devices, such as locks and garage doors.
* In the **Voice over IP** integration, select the **device** link.
* To allow this phone to control your smart home, under **Configuration**, enable **Allow calls**.
![Voice over IP integration - allow calls](/images/assist/voip_configuration.png)
1. Congratulations! You set up your analog phone to work with Home Assistant. Now pick up the phone and control your device.
* Say a [supported voice command](/docs/assist/builtin_sentences/). For example, *Turn off the light in the kitchen*.
* Say a [supported voice command](/voice_control/builtin_sentences/). For example, *Turn off the light in the kitchen*.
* You can also ask a question, such as
* *Is the front door locked?*
* *Which lights are on in the living room?*
@ -114,7 +114,7 @@ If youre unable to call Home Assistant, confirm the following settings in you
**Symptom**
You were able to control Home Assistant over the phone but it no longer works. When picking up the phone, no sound is played.
The [debug information](/docs/assist/troubleshooting#view-debug-information) shows no runs.
The [debug information](/voice_control/troubleshooting#view-debug-information) shows no runs.
**Potential remedy**
1. Log onto the Grandstream *Device Configuration* software.
@ -127,7 +127,7 @@ The [debug information](/docs/assist/troubleshooting#view-debug-information) sho
Are things still not working as expected?
* Checkout the [general troubleshooting section for Assist](/docs/assist/troubleshooting).
* Checkout the [general troubleshooting section for Assist](/voice_control/troubleshooting).
## About the analog phone