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

Actions Builder webhookResponse Unexpected internal error at List Response

I tried to add a List Response from my webhook and always receiving an error such as: Unexpected internal error id=c57c97b2-0b6f-492b-88a3-3867cf2e7203 (The id changes each time.) After comparing the expected JSON webhookResponse from the Docs with…
kgass
  • 23
  • 4
1
vote
1 answer

Delaying speech and text between Scenes

I have both a speech and text Prompt in a Scene and in the Scene that is transitioned to. The separate speech prompts are spoken with just a brief break between them. The text prompts are displayed as sentences in the same paragraph. Ideally, I…
1
vote
1 answer

Actions on Google NO_MATCH handling

In the Actions Console one can specify a NO_Match when a user's response does not match an existing parameter. But that NO_MATCH does not provide a transition to another scene. When the user input is not recognized, I want to return to the start of…
1
vote
2 answers

Google Actions Builder and Google Assistant - Looking for @sys.any equivalent intent

I have created a project for Google Assistant through Google Actions Builder (not the SDK). I successfully connect with my webhook (fulfilment), but find there is no intent similar to @sys.any as found in Dialogflow to allow any user response to be…
1
vote
1 answer

Programatically create Conversational Action on Google via an API

Google has recently released the Conversational Actions skill creation kit. From my understanding, it differs from the previous Actions on Google set that was available and, indeed, on the integrations part of Dialogflow, the AoG integration is now…
Mori no Ando
  • 192
  • 4
  • 13
0
votes
0 answers

Configuring Scene to Call Webhook

I've created a Webhook in the Actions Console and entered a URL that should be called: Webhook screenshot In my Scene, I'm trying to get the Webhook invoked upon entering the Scene: On Enter Scene screenshot The textbox that appears after checking…
Ed Park
  • 1
  • 1
0
votes
1 answer

Using the Google Actions console gives me an error, even if I didn't change anything in the sample project

I'm trying to make a custom google action using the Google Actions console. So far I've had a pretty rough time, given that all the tutorials I found are outdated(-2020). What I did was start with a sample Hello World project: And then go straight…
0
votes
1 answer

Handler not found for handle name

I've got an application built with Actions Builder with webhook handlers hosted on the firebase side. As an application has been migrated from old bundle AOG + Dialogflow, fulfillment webhook was exposed in the next way: const functions =…
0
votes
1 answer

How to connect to Actions builder project to update type entities?

I've got a project build migrated from AOG + Dialogflow to Actions Builder. I need to update (or insert new) type entries with the REST API. To do that action I've found an endpoint, that gives the ability to update the whole project along with…
0
votes
1 answer

Using Regex to identify Entity on a Google Action Intent

I have this Intent on Google Actions with a couple of utterances: and I'm using one of the default system types: The Bank Account should always be 8 digits so I was thinking if I could use Regex on Google Actions to identify this exact entity when…
vpego
  • 145
  • 1
  • 1
  • 8
0
votes
1 answer

Google Action How to add a parameter to the userresponse sent to my webhook

I am working with google action on the google action console. i am able to communicate with my server and get some response with webhook. i am also able to send parameter using intent. But those parameter are prerecorded. it's can ether be a name…
XCarb
  • 735
  • 10
  • 31
0
votes
1 answer

Google Action Console(Cloud function editor) How to ask something to the user

Hi i'am working with google assistant, i'am using Action Builder in the Google Action Console because it seemed easy to use. I red the documentation here https://developers.google.com/assistant/conversational/overview and i followed this tutorial…
XCarb
  • 735
  • 10
  • 31
0
votes
1 answer

Google action builder/Google assitant How to use proper noun as type

i would like to have a type that represent proper nom, such as family name for exemple but i can't find anything on this. My goal is to send a info to an other personne using google assistant and my backend. For exemple the user can say "Send this…
XCarb
  • 735
  • 10
  • 31
0
votes
1 answer

How to tell Google Assistant to automatically open Android App using Actions Builder or Actions SDK?

Through conversations in google assistant I want to open my android app on my phone. For example: I'm conversing with my chatbot and as a response to my query the bot should open my android app. My requirement is to open the app automatically (user…
MA90
  • 23
  • 3
0
votes
0 answers

Forced to make intents global when used as custom intents in scenes

I'm currently migrating from Dialogflow to Actions Builder, things have gone well so far however after adding custom intents to my scenes the test simulator prompts me with the warning "Intent 'intent_name' is used as an action, but not added as a…