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

Using SSML (interpret-as="characters") removes punctuation

If I use the tag in my voice response, google assistant suddenly pronounces the whole response differently. It sounds as if google assistant removes punctuation without any reason. The pauses, which are…
Toni
  • 1,593
  • 1
  • 11
  • 21
0
votes
0 answers

Is there a way to access application data through Google Actions?

I'm just getting started with Google Actions SDK. I want to write an action that accesses an API which requires a private key. I could just use my private key as a stored secret on my fulfillment server, but I'd rather get the user's own private…
0
votes
1 answer

Google assistant in other country - pause music

I live in Poland, where Google Assistant isn't allowed (operated) and I would like to write a simple script, which allow me to say: "Ok, google, muzyka stop". Next device will stop music play. Is it possible to write this in dialogflow or other…
0
votes
1 answer

Dialogflow/ API.AI for Google Home Mini App

This is my very first question and seems to be easy but coding it is somehow difficult... So, basically I've got an Agent that should just call a URL and get the content of the website. This should then be spoken out by the smart speaker. I already…
0
votes
1 answer

Bose Soundtouch 30II connect with Google Assistant

I'm using Google Home and Google Chromecast Audio to play Google Play Music or Spotify on my Soundtouch 30 II. It's working fine but I got ONE BIG PROBLEM. I always have to turn my Soundtouch with the remote or the Soundtouch App on to hear the…
0
votes
2 answers

How to call Google Assistant API from the Dialogflow webhook?

In webhooks from Dialogflow, is there a way to trigger Google Assistant APIs, get back the result and display in Dialogflow? Thanks.
0
votes
1 answer

trouble using a "for loop" to build a list using a parsed json file on "actions by google"

Below is my code where I parsed a json file and used in a loop to "for" loop in order to print it out onto a console process.env.DEBUG = 'actions-on-google:*'; const apikey = "xxxxxx"; const https = require('https'); const ActionsSdkApp =…
0
votes
1 answer

Testing google assistant using gactions CLI

For testing my assistant app, I want to use 'gactions CLI'(https://developers.google.com/actions/tools/gactions-cli) But, When I try this part $ gactions test --action_package PACKAGE_NAME --project PROJECT_ID For example: $ gactions test…
Sinyoung
  • 43
  • 5
0
votes
1 answer

google assistant on raspberry pi 3 screen conectting

I have installed on raspberry Pi3 Google Assistant every thing is fine works perfect. But when I try to ask to show me a picture or to open youtube is telling me that the monitor is not connected how can I fix this, to connect the monitor on…
0
votes
1 answer

OAuth Implicit flow Access Token expires every hour

I'm having a problem with the OAuth Implicit flow for the Google Assistant. I managed to set up a OAuth server and got it to work. Here's the flow: The user Is redirected to my endpoint, authenticates with a Google account, and gets send back to the…
0
votes
1 answer

How to implement OAuth 2.0 Authorization for Google Assistant on Android?

I have created the gRPC binding for the embedded_assistant.proto and now need to authenticate with Google Assistant SDK before I could send and receive data. I have followed this guide but I am confused as to how do I authenticate with the OAuth…
David
  • 171
  • 2
  • 10
0
votes
1 answer

Execute code based on user audio input

In an android app, how to execute different Java classes based on what the user says. For example, the user clicks on a button and says 1. The app should execute the Java code with name 1.
0
votes
1 answer

Google Assistant API generating .proto file missing import

I am getting the errors google/api/http.proto: File not found google/protobuf/descriptor.proto: File not found when trying to generate the .java files for embedded_assistant.proto. I am using the Protobuf Plugin for Gradle for Android. Where do I…
David
  • 171
  • 2
  • 10
0
votes
0 answers

Can't install the Google Assistant library on a Raspberry Pi 3 Model B

I have been trying to install the Google Assistant library on a Raspberry Pi 3 Model B running Raspbian Stretch with Desktop September 2017 by following the guide, Download the Library and Run the Sample. I created a Python virtual environment…
0
votes
1 answer

Can you close a webview in Google Assistant with JavaScript?

Facebook Messenger has MessengerExtensions.requestCloseBrowser that will close the webview on the Messenger app. Is there an equivalent for Google Assistant? The use case might be authenticating or completing some type of acquisition and closing…