diff --git a/source/_integrations/google_assistant_sdk.markdown b/source/_integrations/google_assistant_sdk.markdown index a60bf0ae639..ea558e6768b 100644 --- a/source/_integrations/google_assistant_sdk.markdown +++ b/source/_integrations/google_assistant_sdk.markdown @@ -27,6 +27,7 @@ This integration allows: - Someone is at the front door - Smoke detected in the master bedroom - Water leak detected in the master bathroom +- Having a conversation with Google Assistant using the [conversation](/integrations/conversation/) integration via text or voice. ## Prerequisites @@ -133,3 +134,22 @@ data: - bedroom - basement ``` + +## Conversation agent + +In `configuration.yaml` add: +```yaml +conversation: +``` + +In the configure options of the integration, enable the conversation agent and then you can converse with Google Assistant by pressing the microphone in the frontend (supported browsers only): + +![Screenshot Conversation](/images/integrations/google_assistant_sdk/conversation.png) + +Or by calling the `conversation.process` service with the transcribed text: + +```yaml +service: conversation.process +data: + text: "Dim the family room lights" +``` diff --git a/source/images/integrations/google_assistant_sdk/conversation.png b/source/images/integrations/google_assistant_sdk/conversation.png new file mode 100644 index 00000000000..e656ba4fd17 Binary files /dev/null and b/source/images/integrations/google_assistant_sdk/conversation.png differ