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
2
votes
0 answers

Hey, how can we integrate Dialogflow CX with flutter

I am trying to use some in-built agents from CX but since I have used Dialogflow ES json file, I think I am unable to integrate CX and ES using the same json file.
2
votes
1 answer

How to have quick responses with dialogflow cx?

I am looking for a way to provide quick responses for the users during a dialog where the user can quickly respond by selecting one of the provided responses. After searching I found this for Dialogflow ES but unfortunately I am using CX. For the…
zlZimon
  • 2,334
  • 4
  • 21
  • 51
2
votes
2 answers

Dialogflow CX - Form Parameter FINAL and UPDATED Event Not working

The DialogFlow CX with Page Form Parameters was working well in the test simulator and recently, my chat bots are not responding after user inputs. When i tried to troubleshoot the issue i realized that the $page.params.status='FINAL' or the…
Nirmal
  • 109
  • 1
  • 10
2
votes
1 answer

More than 10 nested flow transitions detected

Here are the details of the error I am facing with dialogflow CX My bot is designed to go to different flows from the start page and from each flows it goes to anything else flow and back to start flow. Recently, I have noticed that if we call a…
2
votes
3 answers

How to use Dialogflow CX API pass parameters to webhook?It seemed that detectIntent() set session queryParams does not work

According to the google dialogflow cx document: https://cloud.google.com/dialogflow/cx/docs/concept/parameter https://cloud.google.com/dialogflow/cx/docs/reference/rest/v3/QueryParameters click to show the reference I know we can use api to set…
Henry Hao
  • 91
  • 1
  • 6
2
votes
2 answers

How do I correctly add authorization to my Axios requests to Dialogflow CX API?

I want to communicate with the Dialogflow CX API from my React application. The relevant code looks like this: componentWillMount() { let payload = { "queryInput": { "text": { "text": "Hi!" }, …
Teresa
  • 353
  • 1
  • 5
  • 27
2
votes
1 answer

Dialogflow Messenger CX intercept and add queryParams to responseBody

I want to intercept the request from dialogflow messenger CX and add parameters to responseBody by queryParams, I have read the documentation but it is not clear about how to add the new parameters using javascript event. I understand that there is…
2
votes
1 answer

How can I make a registration bot in dialogflow?

I want to do registrations using dialogflow. For example: I want bot to ask following questions: What's your name? What's your email? and so on. I tried to implement this but not able to manage intents properly. What should I do to achieve that?…
2
votes
1 answer

clickable options in Dialgflow CX

Is it possible to show clickable options in Dialogflow CX? If "YES" can I get an example for this. I have created a simple Agent in Dialogflow CX. When the user enters a city name then I want to list pin codes that should be clickable. How can I…
kiran
  • 444
  • 3
  • 15
2
votes
1 answer

How to read webhook response in Dialogflow CX

I have created a simple Agent in Dialogflow CX. When the user enters a city name then it should list pin codes that belong to the entered city. In order to get the pin codes, I have performed a webhook POST request. The webhook URL returns the…
kiran
  • 444
  • 3
  • 15
2
votes
1 answer

Dialogflow CX: How to use a session parameter as a form parameter?

I want my chatbot to review the session parameters it knows so far. However, some are optional. So while I can state most of them simply in the entry dialogue, some of them I would like to state only if they have been filled in already. After it has…
Teresa
  • 353
  • 1
  • 5
  • 27
2
votes
2 answers

Dialogflow CX: How to get the entire transcript between the user and the bot at any point in the given session?

I'm building a bot using Dialogflow CX and I would like to get the entire transcript, particularly the text messages that the user responded when a particular intent is triggered. I'm using a Node.js server to communicate with the bot from a React…
Mohan Raj
  • 41
  • 5
2
votes
2 answers

Where can I find the DialogFlow CX Agent ID?

Im trying to fill API params: https://cloud.google.com/dialogflow/cx/docs/quick/api. I couldn't find any reference on how to locate agent ID on its doc: https://cloud.google.com/dialogflow/cx/docs/concept/agent. I couldn't find the ID in Agent's…
Guzmán GP
  • 51
  • 2
  • 6
2
votes
1 answer

No DesignTimeAgent found when testing with detectIntent API using prebuilt agent template and "try this API" button

Always return No DesignTimeAgent found (even using the prebuilt agent template) when testing with detectIntent API in DialogFlow using "Try this API". The API I tried is "projects.agent.sessions.detectIntent". The session parameter is…
2
votes
2 answers

How to build a Dialogflow CX agent with open questions?

I am trying to build a Dialogflow agent for something like StackOverflow, where it takes care of the user asking a complete question. I want to store the answer (and feed it back to the user). For example: User: "I get an error." CX: "Which…
Teresa
  • 353
  • 1
  • 5
  • 27
1
2
3
21 22