Questions tagged [actions-builder]

The Actions Builder is a web-based IDE that is built-into the Actions on Google Console, allowing developers to create scenes, intents, types, and prompts for conversational Actions. It includes the Actions SDK, a command line tool allowing you to download, edit, and upload the configuration for the web-based Builder.

The Google Assistant is a virtual assistant that is available on smartphones, Google Home and other devices.

Actions on Google is a developer platform to develop apps and publish them on the Google Assistant.

The Actions Builder is a web-based IDE that is built-into the Actions Console, allowing developers to create scenes, intents, types, and prompts for conversational Actions. The Actions SDK (part of Actions Builder) is a command line tool that downloads and uploads configuration file representations of what is edited using the IDE.

Details: https://developers.google.com/assistant

78 questions
1
vote
1 answer

Google Action prompt link url on Webhook response not working as expected

I am trying to add a prompt link to my Google Action: https://developers.google.com/assistant/conversational/reference/rest/v1/TopLevel/fulfill#link My response looks like this: payload.prompt.link = { name: 'Open My Website', open: { url:…
John Kelvie
  • 858
  • 1
  • 7
  • 16
1
vote
1 answer

Create and share actions programatically

I am making an app as my uni project, to help users create actions with 0 programming experience. The problem I've encountered is the following: How do I create a google action programatically How do I make that action available for user to…
1
vote
0 answers

Action Builder enable global intent language confusion when setting multiple languages

I enabled the multi-language and global intent options in my Action Builder. When I checked the "Deep link to my_intent" column, I found that the language was confused, mixed with various languages, and did not switch with the language. deep link in…
Lei G
  • 11
  • 1
1
vote
1 answer

Google Assistant - existing dialogflow intents & new actions cooperation

I have a technical question about the Google Assistant - unfortunately, I couldn't find a clear answer anywhere. At the moment our company have: the conversational chatbot built on Dialogflow, which is constantly developed by our employees Google…
Wojtek
  • 23
  • 3
1
vote
1 answer

Can Google Actions be imported/exported from the Actions Console?

I'm just starting to learn how to build an Action with Scenes and Intends. Very basic. I see that prompts can be defined in JSON. Is it possible to export the whole Action in JSON format for me to edit it outside of the UI? and then reimport it? The…
Marc
  • 11
  • 1
1
vote
2 answers

Unable to show List selection

I'm developing an Action where I want to display a list of items to select using a List, but Assistant raises the following error: Unexpected internal error id=83ef0935-3d8f-473d-9e66-f96c886cd4cd. This is my Scene: I have created a empty Type…
1
vote
1 answer

Why is there no Carousel in @assistant/conversation

If not, I want to use more than two cards. If not, I want to know how to use List (list code example). Absolutely not Dialogflow code! I need the ActionsOnGoogle code. const functions = require('firebase-functions'); const syncRequest =…
박동석
  • 99
  • 6
1
vote
0 answers

Getting the CANNOT_PURCHASE for actions.type.DigitalPurchaseCheckResult for supported locale (en-US) and enabled Access Play purchases app

Getting the CANNOT_PURCHASE for actions.type.DigitalPurchaseCheckResult for supported locale (en-US) and enabled Access Play purchases app Scenario: Actions Console > Directory information > Additional Information > Do your Actions use the Digital…
P.Filippov
  • 121
  • 9
1
vote
1 answer

"You are testing actions that you created in project: [[ another project ]]"

I'm struggling to get a Google sample working. I think I'm following the instructions correctly but now, when testing (in project-y), I receive a warning: You are testing the Actions that you have created in project: project-x I had previously…
DazWilkin
  • 32,823
  • 5
  • 47
  • 88
1
vote
2 answers

Google Actions not passing user info (access token/ identity token) in fulfillment request

Issue: Google actions builder fulfillment does not seem to send user access token in requests Description: I'm migrating a bot from dialogflow assistant integration to actions builder (https://codelabs.developers.google.com/codelabs/actions-1/#0).…
1
vote
1 answer

Google Assistant custom action programming - speak few words of a constant prompt speech slower

I am building a custom action for Google Assistant on the web view of https://console.actions.google.com/ One of the responses is a long prompt sentence consisting of something like: Easy to understand "please send a postal letter to" Then Hard…
dszakal
  • 144
  • 11
1
vote
0 answers

Google Assistant Conversational Actions - Digital Transactions - Connect to your Play inventory

Cannot connect app (Play inventory) to the Assistant Action. I followed all instructions mentioned in the documentation: a developer account and a merchant account on Google Play - CREATED. a web domain that’s verified in the Google Search…
1
vote
1 answer

How to replace an existing DialogFlow action with Assistant SDK action

We have an existing Dialogflow Google action in production today. We would like to replace it with a new Google Assistant SDK action with the same invocation name. When I created a new SDK project, I was not allowed to use the existing invocation…
Zoe Wu
  • 29
  • 1
1
vote
1 answer

Google Assistant Hello World Draft Project not updating

Very new to Google Actions. Testing out tutorial stuff. I have tried this in a couple of test projects just to double check. After initial run of any project I do not get any updates on draft projects. No changes show up in draft projects for me for…
doubleA
  • 2,446
  • 22
  • 45
1
vote
1 answer

Change the position of slots for processing

New slots are added to a scene sequentially. I have a cleanup free form slot that handles any input that slots higher in the order have not handled. It has to be the last slot to be processed. But when I want to add a new slot it becomes the last…