Questions tagged [google-assistant-sdk]

The Google Assistant SDK allows you to build hardware that runs the Google Assistant. If you have a question about devices or writing apps that work with the Google Assistant, see the actions-on-google tag.

Tag for the developer preview of the Google Assistant SDK.

With this SDK hardware prototypes can be built that include the Google Assistant, such as a self-built robot or a voice-enabled smart mirror. This allows you to interact with the Google Assistant from any platform.

The Google Assistant SDK includes a gRPC API, a Python open source client that handles authentication and access to the API, samples and documentation. The SDK allows you to capture a spoken query, for example "what's on my calendar", pass that up to the Google Assistant service and receive an audio response. And while it's ideal for prototyping on Raspberry Pi devices, it also adds support for many other platforms.

To get started, visit the Google Assistant SDK website for developers, download the SDK, and start building.

930 questions
0
votes
1 answer

Build GoogleAssistan App in Android

I want to build an apk(Named commander) to use Google assistant(SDK), the feature designed below: 1:control some device, for example. Just say"Ok google, set the brightness to 100" or "Ok google, take a picture now." 2:Use default google assistant's…
0
votes
0 answers

How to Link MyAndroidApp to Google Assistant to redirect to a particular content present in my AndroidApp

As an example, I want to tell Google assistant "open xyz in myAndroidApp or show xyz in myAndroidApp" It should redirect to the app and open with the specific intent or data(deep linking) How can I achieve this?
0
votes
1 answer

Trying to install google assistant on my windows 10 laptop but I get this error after I try to use it

I am using the new sdk for the google assistant along with the new commands for it (python -m googlesamples.assistant.grpc.audio_helpers and python -m googlesamples.assistant.grpc.pushtotalk) it always passes the test but keeps coming up with this…
0
votes
1 answer

Google Voice Actions, Home, Actions, Assistant

Please can somebody give a short summary/difference between Google Voice Actions, Home, Actions and Assistant (Dialogflow)? I would like to control my android java application via google assistant/home, but I'm having hard time finding something I…
miro
  • 809
  • 10
  • 25
0
votes
0 answers

Can't finish setup for the assistant

I followed this guide for installing the google assistant library on my raspberry pi 3b with USB out and USB mic. Link to guide: https://developers.google.com/assistant/sdk/guides/library/python/ I get all the way to "run the sample code" without…
0
votes
1 answer

Getting error code 200 for google assistant on Raspberry pi 3

I am getting the following errors: https://embeddedassistant.googleapis.com/v1alpha2/projects/rpiassistant-f01c3/devices/B65EF05D34859770BDEBF646E84D89F1 200 ON_MUTED_CHANGED: {'is_muted':…
nakul nair
  • 11
  • 2
0
votes
1 answer

No sound answer from google assistant

Running on Ubuntu 16.04 on a X86 64 architecture. I am following the Google Assistant SDK for python guide : https://developers.google.com/assistant/sdk/guides/library/python/embed/run-sample Everything seems to work well except that I get no sound…
0
votes
1 answer

How can i use Google Assistant SDK + Dialogflow by CLI(Command Line Interface)?

I want to make a small AI speaker. It looks like Google Home, Apple Homepod. I installed the Google Assist SDK on my Ubuntu 16.04. I can register an action through gactions. $ pushtotalk.py --device-model-id ~ I can use the Google assistant like…
Jaime
  • 3
  • 1
0
votes
0 answers

how to run google assistant sdk with sudo

I'm having this problem where I need to run google assistant sdk with sudo command because I'm trying to integrate the action after receiving the instruction using Grovepi library from https://github.com/emutex/GrovePi . Error I get if I didn't run…
SyamsulMJ
  • 39
  • 2
0
votes
1 answer

how can i get the value on ON_RECOGNIZING_SPEECH_FINISHED: {'text': 'what you doing Google'} Google Assistant SDK Ubilinux UP2 Board

how can i get the value on ON_RECOGNIZING_SPEECH_FINISHED: {'text': 'what you doing Google'} in google assistant ON_CONVERSATION_TURN_STARTED ON_END_OF_UTTERANCE ON_RECOGNIZING_SPEECH_FINISHED: {'text': 'what you doing…
0
votes
1 answer

Error using Google Assistant Library with Raspberry Pi 3 and Python (Credentials not accepted)

I successfully managed to get Google's Assistant working on my Raspberry Pi 3. It works by using google-assistant-demo --d device_id1234 Now I want to get access with python to turn on/off an LED when a certain command is recognized. Unfortunately…
Brosch
  • 98
  • 8
0
votes
1 answer

Action on Google - Custom action in german language using action sdk

I am developing a speech recognition for a custom device using Google Assistant SDK. I am using Action SDK to create custom actions. In my example the Google Assistant doesn't recognize actions in german language in case these actions are marked…
Luk
  • 1
  • 2
0
votes
1 answer

How do I uninstall google assistant from raspberry pi?

I have a question regarding how to uninstall google assistant on the raspberry pi 3. The files are scattered over the place so deleting is not an option. Is there any command to uninstall google assistant on the raspberry pi? I am using the google…
0
votes
1 answer

Smart Home sample, "Couldn't update settings please check your connection"

My goal is to get the "Turn on the light" message when I say that to my Google Home. To do that, I visited their documentation page, which listed this sample code. I downloaded it and run it locally. Even thought I ran it locally, by default it was…
Damn Vegetables
  • 11,484
  • 13
  • 80
  • 135
0
votes
1 answer

Is it possible to simulate the 'contextual matching' from carousel/list elsewhere?

When you present a Google Actions carousel/list on Assistant, you get a list of items. For example: Soccer Basketball Rugby Next, the user can say Soccer, Basketball or Rugby but not Tennis, Cycling, ... This means that the matching happens in the…