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

Compare time in Dialogflow CX conditional response

I try to compare time in conditional response: if $sys.func.IDENTITY($sys.func.FORMAT_DATE($sys.func.NOW(), "H")) < 8 OR $sys.func.IDENTITY($sys.func.FORMAT_DATE($sys.func.NOW(), "H")) > 20 We are closed now else We are open endif Time is…
rightaway717
  • 2,631
  • 3
  • 29
  • 43
0
votes
2 answers

OR condition not working in Dialogflow CX

I have an intent that contains several parameters. I established a route that should be activated when the first parameter OR the second one is not empty: $intent.params.tipo3.resolved : "" OR $intent.params.valutarapporti.resolved : "" If either…
0
votes
1 answer

Is there a way to enable keystroke input for a specific fulfillment while being on the call?

I am building an agent and integrated it with telephony. I don't want the caller to orally say some of the sensitive or complex information to the agent, instead I want the caller to key in the information using the keypad while being on the call…
0
votes
1 answer

Dialogflow CX import entities using C#

Unfortunately there is no API sample for c# to push entity type from an Dotnet project. Is there anyone working with it?? A sample code will be helpful.
Zia
  • 62
  • 7
0
votes
1 answer

Can somebody help me to get started with Google Dialogflow in spring boot

Searched a lot but there is no precise answer on how to get started with dialogflow in spring boot. Aim: To detect intent from GDF knowledgebase and return back the response. What I have done so far: Tried executing this code…
0
votes
1 answer

DialogFlow CX Chatbot how to refer to user-id from df-messenger within the DialogFlow Console

I am using the following embedded df-messenger javascript in my page:
JamesMatson
  • 2,522
  • 2
  • 37
  • 86
0
votes
1 answer

DialogflowCX- @sys.any Doesn't Grab Everything In Second Flow

@sys.any is not working reliably when it's used outside of the main flow. I created an intent with 9 different words, and every word has been highlighted with the @sys.any entity type. The idea of @sys.any is to grab ANY input the user does,…
0
votes
1 answer

buttons from webhook dialogflow cx

I have a diaglogflow cx assistant and I have my own web front. I am getting the responses from a webhook and there is no problem with texts but I would like to add buttons, cards, images... that, although they cannot be seen in dialogflow cx, I can…
Adrián
  • 39
  • 1
  • 6
0
votes
1 answer

How to start a conversation using an event in Dialogflow cx sending by python

I'm trying to start a conversation from dialogflow cx python API. I have seen this question Start a conversation at the beginning of a flow using flow ID that solves the problem using Node.js but I'm not able to replicate in python. In my code I…
Adrián
  • 39
  • 1
  • 6
0
votes
1 answer

DialogFlow CX flow not routing to next page when using page parameter

I have a page that has an entry fulfillment and route to another page. The intent that maps to the route has training phrases for @sys.number variable which map to parameter id: number. I also have a page parameter my_variable of type sys.number.…
Mike Lunn
  • 2,310
  • 3
  • 21
  • 24
0
votes
1 answer

DialogFlow CX how to declare parameters in the start page?

I need to declare a parameter to store username as input in the first message of dialogflow session, "My name is John" will be the first message the user type to dialogflow cx, I noticed it's not possible to create a parameter on the Start page, is…
0
votes
1 answer

Dialogflow phone gateway integration issue

I am using Dialogflow es version and want to use Dialogflow phone gateway integration so a little bit of background, I am now able to integrate it and I got us a phone number and all the basic things are working but if I use custom webhook it is not…
0
votes
1 answer

Hot to get clients location data in Dialogflow CX

I am writing an app in dialogflow CX which suggests locations to a user based on position and other data about the user. The flow for the user requesting a location works by sending dummy coordinates to my python flask using a webhook. The flask…
0
votes
2 answers

How to use Entity in a Multilingual Agents

I am having a problem with how to use the entity type correctly in multilingual Agents. If I were to make an entity type in a language let's say in THAI and a route for that specific entity using the $session.params.(entitytype) = something but then…
0
votes
1 answer

Dialogflow bot telegram integration

I had a bot active on telegram but now I want to change the API token but whenever I'm trying to stop it, it shows a error message . How do I fix…