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
1
vote
1 answer

How to send audio back from Dialogflow CX webhook?

I am using this code to send back text response from Node.JS Dialogflow CX webhook. I want to play an audio as fulfillment so I want to send link to that audio back. How can I send back audio file link? const express = require("express"); const app…
1
vote
2 answers

How to set dialogflow context from node.js dialogflow package

I am using sessionClient.detectIntent() to send text to dialogflow and it is working fine, now I want to send context too with the text. How can I do that?
1
vote
2 answers

Dialogflow fulfillment showing error "code":6,"message":"Function dialogflowFirebaseFulfillment in region us-central1 in project ... already exists"

I have been using Dialogflow fulfillment inline editor for testing for more than a year. But all of a sudden since past two days, I am not able to deploy it as it is showing error 409 Function dialogflowFirebaseFulfillment in region us-central1 in…
1
vote
1 answer

Dialogflow CX - How to clear parameter

https://i.stack.imgur.com/uq9Yv.png https://i.stack.imgur.com/jaPaz.png https://i.stack.imgur.com/SHIuS.png How do I get 'number' parameter to clear and output the prompt 'say a number' when I say 'no'?
Lim Kai Wei
  • 27
  • 1
  • 7
1
vote
2 answers

Dialogflow CX - using webhook fulfilment to reply user

https://i.stack.imgur.com/oqT5V.png https://i.stack.imgur.com/r3thU.png { "currentPage": { "displayName": "Start Page", "name":…
Lim Kai Wei
  • 27
  • 1
  • 7
1
vote
2 answers

Can Dialogflow could be developed entirely with a text editor?

I have some entities and intent sentences that I could use right away. It is tedious to input them by hand in the UI. I've seen that the output is just a bunch of JSONs although there are some Ids that were generated from the Dialogflow UI. The…
tonicebrian
  • 4,715
  • 5
  • 41
  • 65
1
vote
2 answers

DialogFlow CX calculate values

I collect data from user input and to finish I want to calculate a value based on that input. For example, I collect the person's weight and then the height to calculate the person's BMI, General Flow. How can I calculate BMI in the last step and…
1
vote
1 answer

How to export agent data from Dialogflow Essentials to Dialogflow CX?

Is it possible to export Agent data from Dialogflow Essentials to Dialogflow CX? If "yes" then how?
Serge
  • 417
  • 2
  • 12
1
vote
0 answers

How to make a quick response similar to messenger in Dilos flow for the default section

I need to make quick replies appear, such as facebook messenger with dialog flow for my web page. In facebook messenger I did it with a template in the custom payload, but in the default section this template does not work, and although I have…
1
vote
0 answers

Dialogflow CX edition: Restore BLOB file agent error

I am trying to restore an agent from a .BLOB file, and I get a "language not supported by platform" error while importing the BLOB file. (screen shot attached) Does anyone know how to fix this issue? Thanks in advance, Claudia
Claudia_
  • 139
  • 3
1
vote
2 answers

Dialogflow CX Page Fulfillment Response Text Parameter Is List (ES users may know the answer as well)

I have a parameter that is defined as a list. When I reference that parameter in the "Agent Says" box, a la the quick start guide, I get the list with brackets in the agent response text. Fulfillment Response Text: That's a…
boristhescot
  • 129
  • 2
  • 11
0
votes
0 answers

Output text in dialogflow cx chatbot containing URLs is repeating URLS excessively

When my Dialogflow CX chatbot is live on a website, some output text containing URLs is being repeated excessively. For instance, if the original text is "Here is some output text. Visit my website at www.website.com," it appears on the website…
0
votes
0 answers

Twilio forwarding to Dialogflow CX phone number and somehow knows to play voicemail intent?

I have this simple code to place a call and upon connection forward to Dialogflow CX so the person who is being called can interact with the bot. Somehow, if voicemail is reached it not only forwards to Dialogflow CX but also plays the "agent says"…
Steven
  • 149
  • 1
  • 10
0
votes
1 answer

Detecting intent in DialogFlow CX

I am trying to detect an intent using the following code in nodeJS: const session=new dialogflow.SessionsClient({ project_id:"activity3-viod", keyFilename:"assets/keys/dialogflow.json" }); const sessionPath =…
Bill Ferster
  • 347
  • 1
  • 5
  • 17
0
votes
1 answer

Importing intents in DialogFlow CX

I am trying to import a csv formatted list of intents into Google's DialogFlow CX like this: Intent Display Name,Language,Phrase r200,en,I wanted to teach you a routine called Check and Circle. r200,en,I called you over to teach you a strategy…
Bill Ferster
  • 347
  • 1
  • 5
  • 17