actions-on-google

Is there a way to trigger different query while filling the required slots in dialogflow

时光怂恿深爱的人放手 提交于 2021-02-07 07:14:35
问题 I have an intent orderPizza and entities as @pizzaOptions @pizzaSize @qty happy path (working fine) user: order 2 pizza bot: which pizza you want? user: pepperoni bot: and pizza size? user: large bot: okay! your order for 2 large pepperoni pizza has been placed. CASE_2 user: order 2 pizza bot: which pizza you want? user: which pizza options do you have? bot: which pizza you want? so in case 2 when user ask for the pizza Options then bot re-prompt the same question I want bot to answer the

Built in intent “actions.intent.GET_ACCOUNT” in App actions not called by user query “Check Balance in mybank”

自古美人都是妖i 提交于 2021-01-29 14:37:41
问题 Tested on android version 7.2 . Works fine when user queries "Check saving balance from mybank " or "Check current balance in mybank" where mybank is app name created in APP action test tool. intent is called and onBindSlice receives parameter " saving " and " current " as parameter but does not work for "Check Balance in mybank" no parameter is captured. how can i make custom user queries work? here is my google actions file <?xml version ="1.0" encoding ="utf-8"?><!-- Learn More about how

Remove 'Google Actions' project from Google home app

生来就可爱ヽ(ⅴ<●) 提交于 2021-01-29 13:30:29
问题 I have a Raspberry Pi running Home Assistant (Hassio actually) and it is communicating with Google to make the lights go on and off using Google Assistant. To do that I have followed the cook book on the home assistant website. When Hassio updated from an API password to Oauth, I created a new project, because I had some issues with discovering devices. In the current situation, when I ask Google to turn on the lights, it turns on the light, but also states that [lastprojectname] is not

Want to change webhook fulfillment back to inline cloud functions but it won't stick

纵然是瞬间 提交于 2021-01-29 08:12:51
问题 I have a voice dialog project in Google Actions Console, and I initially wanted to specify a custom https endpoint, so that I could trigger some functions I have created in Firebase Cloud Functions. At this point, I can either go in that direction, except I don't quite know what url to specify, or how exactly to create that endpoint. So, I thought I could go back to an easier approach, which would be to use the inline code editor, in the Actions Console. I pressed the Change Fulfillment

Dialogflow sys.location to detect full address (?)

微笑、不失礼 提交于 2021-01-29 08:07:39
问题 I cant find a why to handle this situation: Agent: Tell me your address User Via j.f. Kennedy, Padova in my weebhook I would like to receive something like: {city:"Padova", streets:"Via John Fitzgerald Kennedy"} instead of the value of the street detect by dialogflow using sys.location: {city:"Padova", streets:"Via j.f Kennedy"} My goal is to have the full name of the streets in my weebhook, I read https://cloud.google.com/dialogflow-enterprise/docs/reference/system-entities but I dont find

Invoking Action when navigating in Google Maps: “[Action Name] is not supported on this device”

你。 提交于 2021-01-29 06:17:43
问题 My action is live. If I... Invoke it (explicit invocation) from the home screen Google Assistant = Great Invoke it (explicit invocation) when on Google Maps screen (not navigating) = Great Invoke it (explicit invocation) in Google Maps when navigating = "[Action Name] is not supported on this device". Is there a setting to make it work when Google Maps is navigating? You can try this with any random Action 3rd party (not Google) in the Assistant with the same effect. Help! 回答1: Actions on

How to link user account among google actions, mobile app, backend server and firebase auth?

醉酒当歌 提交于 2021-01-28 10:22:42
问题 Not sure if this is the right place for this question. This is not necessary 100% coding problem but it is not not a coding problem either. Anyway, here is The Story: I want to create a shopping system. The user can use the website or the mobile application or the google assistant to get product information and make purchases from this shopping system. The problem I am facing is how can I associate the user among these 3 clients. More specifically for the google assistant/actions. Things I

How to link user account among google actions, mobile app, backend server and firebase auth?

我只是一个虾纸丫 提交于 2021-01-28 10:17:12
问题 Not sure if this is the right place for this question. This is not necessary 100% coding problem but it is not not a coding problem either. Anyway, here is The Story: I want to create a shopping system. The user can use the website or the mobile application or the google assistant to get product information and make purchases from this shopping system. The problem I am facing is how can I associate the user among these 3 clients. More specifically for the google assistant/actions. Things I

Google actions simulator does not work for standard Google Assistant features

痴心易碎 提交于 2021-01-27 17:40:54
问题 I have built an action with Actions-on-Google(2.5.0) and dialogflow-fulfillment(0.6.1) Node.js Library. I cannot test my app on dialogflow test console because I return conv object which is not supported there. Now, I cannot test it in the google action simulator, either. This is the error I get: Invocation Error You cannot use standard Google Assistant features in the Simulator. If you want to try them, use Google Assistant on your phone or other compatible devices. I'd like to use the

Google Assistant Actions - Device Location

为君一笑 提交于 2021-01-25 01:42:24
问题 How can I get user device location (lat, lng) in Google Actions? I have found some examples using actions-on-google library to ask user for permission and get device location. But when creating a new project it is using @assistant/conversation instead of actions-on-google . If I understand correctly, this conversation lib is a new standard and I should be using it. Unfortunately, I cannot find any information about permissions or device location in @assistant/conversation . Is there some