Questions tagged [google-assistant]

220 questions
0
votes
1 answer

Android - Google Assistant not providing the number for CREATE_CALL BII

I am trying to integrate CREATE_CALL BII I can trigger my app using the voice command “Call on ” but I am facing a problem that the BII is only sending me the CONTACT_NAME but not the PHONE_NUMBER even though that contact…
Abdul Momen Khan
  • 199
  • 2
  • 13
0
votes
1 answer

Google Action - Change timeout of "Free form text"

I need to implement an action that has to collected anything a user says. So I use the "Free form text" as "Type" for the slot filling. This implementation works, however when the user have a pause of 1 second (maybe less of 1 second), google…
0
votes
1 answer

Android Google Assistant open my app with just app name

I saw Google Assistant codelabs and implemented open app via Google Assistant. I am using actions.intent.OPEN_APP_FEATURE intent, it is not working what i expected. For example, It works when i say "Hey google open myAppName…
nAkhmedov
  • 3,522
  • 4
  • 37
  • 72
0
votes
0 answers

Dialogflow bot not invoking on Google assistant/ simulator

I have dialogflow agent which when tried to invoke on Google assistant/simulator it say "We're sorry, but something went wrong. Please try again." In the debug section it says "Please turn on Voice & Audio Activity, Web & App Activity (including…
0
votes
1 answer

Why does my app work with app actions test tool, but not when it's published on the play store?

I've been trying to get app actions to work for my app but it only ever seems to work when I use the app actions test tool. When my app is published to the play store none of my phrases that worked in the app actions test tool work with google…
0
votes
1 answer

DeepLink link from Action in Google Assistant when Android app is not present?

I read in the documentation that it's possible to open Android App using DeepLink: https://actions-on-google.github.io/actions-on-google-nodejs/classes/conversation_helper.deeplink.html conv.ask(new DeepLink({ destination: 'Google', url:…
pixel
  • 24,905
  • 36
  • 149
  • 251
0
votes
1 answer

Sending text input to google assistant in windows 10

OK, first off, the main idea here is to automate some light switches upon arrival. I live in a neck of the woods that confuses gps, so my arrival functions for tuya and etc do not work reliably as expected. They do work sometimes but I need it to be…
james28909
  • 554
  • 2
  • 9
  • 20
0
votes
1 answer

how could I change the orders of devices traits

I'm building my own device on google home, I am wondering if it is possible to order the device's traits to be displayed in a specific order on Nest Hub. --- e.g, I would like to display first the toggles then the volume. see the screenshot of my…
0
votes
1 answer

Issue with adding ROLE_ASSISTANT

Now that Android 10 & above has this feature, I'm trying to add it. Included this in the manifest: And here's the code: mRM = (RoleManager)…
droid_dev
  • 303
  • 4
  • 15
0
votes
1 answer

Keywords in Action triggering unexpected exit and global response from Google Assistant

Certain keywords are exiting my action. First of all, I'm aware that there are built-in/system intents (docs). I know that there are conversation exit keywords that trigger actions.intent.CANCEL and exit the action/conversation (eg. "exit",…
0
votes
1 answer

Google Action to play radio stream starts in the paused state on Google Home device

I am developing a simple Action to play an mp3 stream from a radio station using the example YAML code for media-obects in the Action Builder. There is no interaction after the user input "Hey Google, Talk to [radio station] and the conversation…
0
votes
1 answer

Is it possible to connect to an external API for a response using Google Actions API (or another service)?

I have recently been wanting to create a Google Assistant application to read me information from an API (that I have created). I have been doing some research and found that IFTTT AFAIK, but then I came across the Google Actions API. So my question…
Jpac14
  • 11
  • 1
  • 2
0
votes
1 answer

buttons on scaled and rotated stage in pixi js does not respond to touch events

I am working on a game with pixi js. to make the game look normalized on every screen, im scaled the stage as follows this.scale=Math.max(this.viewWidth, this.viewWidth) / (2048 * this.ratio); and on orientation change I am rotating the whole…
Prachi Joshi
  • 355
  • 1
  • 7
  • 20
0
votes
1 answer

User Location (Latitude & Longitude) not updated quickly on Google Assistant

I'm using "DEVICE_PRECISE_LOCATION" in Dialogflow to get the user's location (latitude and longitude). But the lat long I receive are the old ones. If a user moves, the latitude and longitude I receive from Google/Dialogflow take almost half an hour…
0
votes
1 answer

Google action test console don't let me run code in simulator

I am developing a chatbot application with google action console. I am new to google action. After deploying some dialog with it. It doesn't let me test app throwing Invocation error. Invocation Error You cannot use Actions deployed by others in…