Questions tagged [dialogflow-cx]

Dialogflow CX is an advanced Natural Language Understanding system from Google that allows building larger, more complicated, flow-based conversation models using an API or graphical web-based UI. These conversation models can be used via an API and offer business logic integration through developer-written fulfillment code. For the classic, simpler, non-graphical, and incompatible NLU from Google, see the dialogflow-es tag.

Dialogflow CX is a more advanced Natural Language Understanding system that is suitable for large or very complex conversational agents. Flows and pages are the building blocks of conversation design, and state handlers are used to control conversation paths.

Dialogflow CX consists of several components including

  • An API that allows you to do conversational processing and get a response from a text or spoken phrase
  • An API and graphical web-based UI that allows you to build the NLU and conversational model
  • The ability to apply additional business logic through fulfillments

There is an older, less advanced, system that was formerly known as just "Dialogflow" (and, before that, "api.ai"). It is now known as Dialogflow ES. Questions about that version specifically should be tagged .

326 questions
0
votes
1 answer

DialogFlow -CX with React Native

Is there any way to implement DialogFlow-cx directly with React native App as DialogFlow ES version does? I am trying with the REST API also But not working. I want to Call the Dialogflow CX API from my React-Native App.But I am getting 404, I have…
deepal
  • 1
  • 3
0
votes
2 answers

How do we programatically create a Project and Agent in Dialogflow?

I am trying to automate the creation of Dialogflow agent and project from my Spring Boot Microservice application. The same is working very well on API explorer provided by google. But when I try the same from Postman to make a http call (which…
0
votes
1 answer

Using a webhook from Google Cloud Functions with Dialogflow CX

I managed to successfully implement a webhook with Dialogflow CX in a repl environment and flask, but not sure how to move the webhook onto Google Cloud Functions. I've scoured the web for a tutorials, but most are in Dialogflow ES. Any help is…
Ryan Tom
  • 195
  • 3
  • 14
0
votes
1 answer

Dialogflow CX phone gateway - Extract caller ID

In Dialogflow CX, I have used phone gateway. I want extract the caller ID of the user who calls the voice bot. According to the documentation, we can get the caller id from the payload field in webhook. But I dont see a payload field or caller id in…
0
votes
1 answer

Google Actions Builder and Dialogflow CX?

I would like to use Dialogflow CX to build an agent for the Google Assistant app but I am getting mixed information from articles and documentation on whether this is possible and how easy it is. Does anyone have experience doing this, or have any…
Adam B
  • 95
  • 11
0
votes
1 answer

redactedText in Dialogflow CX Webhook Requests

I'm getting the following error when I'm using Dialogflow CX Webhook {"error":"unknown field \"redactedText\" in google.cloud.dialogflow.cx.v3.ResponseMessage.Text"} I'm using the code below to read the Webhook Request wr :=…
0
votes
2 answers

In Google DialogFlow CX, is it possible to call on an external API, then get the callback response after 15min?

I am using an exteranl API that do some work for 15min, when it finish it will call any URL you define in your initial request to send the results to. Is it possible for dialogFlow to accept this result in 15min? Is there like a built-in async…
Bill Software Engineer
  • 7,362
  • 23
  • 91
  • 174
0
votes
2 answers

Multiple Intents in DialogFlow CX

I want to have the user respond with a longish response, like talk about their education and family background. In this, I would like to identify multiple intents and then go back to the user with multiple questions (one by one) as a follow-on to…
WynC
  • 5
  • 2
0
votes
1 answer

How do we ensure that the BOT remembers the name provided by the user?

DialogFlow CX I am trying to ask the user her name, and then respond with "Nice to meet you " and then occasionally say that during the rest of the conversation. Not sure how to accomplish this in the bot. I understand we need to use @sys.person…
WynC
  • 5
  • 2
0
votes
1 answer

Dialogflow - Slack integration

A few years ago I built a chatbot for Slack in Dialogflow (before it was ES and CX), and it worked fine. I'm trying to build another one at the moment (2021), but ES does not have the integration tab anymore and there seems not to be a way for…
0
votes
1 answer

Is it possible to enable the 'required' option for Dialogflow Intent Parameters using Node.js?

I'm trying to create an intent with a 'required' parameter that will prompt a response once the parameter is not satisfied. Is this possible through Node.js? If yes, how could I execute this. Thank you!
0
votes
2 answers

Hi is it possible to create an entity in Dialogflow using Node.js?

I'm trying to create an entity on Dialogflow using Node.js. Is it possible? If yes, how should I execute it? Thank you.
0
votes
1 answer

DialogFlow CX throwing "Regular expression match too broad" error for REGEX ENTITIES

I try to define a DialogFlow CX custom entity for values like e.g. "0.23" using the Regex option and entering the following Regex: [+]?([.]\d+|\d+([.]\d+)?) But DiglogFlow CX would not accept this Regex and throw the error Validate entity failed…
Felix
  • 121
  • 9
0
votes
1 answer

Error when deploying DialogFlow CX webhook on Google Cloud Functions: "Error: listen EADDRINUSE: address already in use :::8080"

I desperately try to implement a simple Webhook for my DialogFlow CX agent. Never done this before so I just copy paste the index.js and package.json code I found on the following page to my Google Cloud Function: DialogFlow CX calculate values But…
Felix
  • 121
  • 9
0
votes
1 answer

Auto-correct spelling option not available

I can't find the checkbox to activate the option "Allow ML to correct spelling" as described here: https://cloud.google.com/dialogflow/cx/docs/concept/agent I am in 'Agent Settings' -> 'ML Setting' tab as discribed in the linked document but there…
Felix
  • 121
  • 9