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 how to make a flow start the conversation and suggestion chips

I have been trying to make my own chatbot with dialogflow CX, I cant see to find enough DOC about this tool. I am trying to make the bot start the conversation when i join the session but i cant find a way to do it. Right now my chatbot needs a…
aggarcia
  • 5
  • 6
0
votes
1 answer

How to autopublish a dialog flow bot in slack

I have a bot in dialogflow with slack integration, and need it to be auto publish, like that: The user send a specific command like: update bot and dialog flow publish a new version. Can this be possible? How can I do this?
0
votes
2 answers

Saving user utterance in a parameter during no match intent on start page

I am trying to implement a search functionality using webhook. I want to save user utterance in a parameter in case user query does not match any intent on start page. Is there any way to save user utterances in parameter so that it can be used by…
0
votes
3 answers

How to copy and paste a flow in dialogflow cx?

I want to create an agent with two flows using the new version of Dialogflow (CX), in some ways this 2 flows are very similar. That's why instead of creating from scratch all the pages of a flow i was looking if it was possible to copy and paste a…
0
votes
2 answers

Incorporation of Dialogflow CX Agent on Pepper Robot using Android Studio

I would like to implement a Dialogflow CX Chatbot on Pepper Robot using Android Studio. I find tutorials and repos - but all of them deal with version ES. Is there any way to do the same with CX? Is there a repo or tutorial available? Thanks in…
Kathy411
  • 13
  • 5
0
votes
1 answer

Dialogflow CX Route Groups

I am having a bit of trouble understanding how to use route groups in Dialogflow CX: from Google's documentation I understand they were made to avoid mapping the same intent routes (if intent is X, go to flow/page Z). From their docs: you can…
fcagnola
  • 640
  • 7
  • 17
0
votes
0 answers

substring search in Conditional response

I have created a simple Agent in Dialogflow CX. Before performing the next webhook call I want to check user-entered city is present in the $session.params.cities. By referring to conditional response doc, I have used HAS (:) operator like below if…
0
votes
1 answer

How can I do a counter session variable in the Dialogflow CX interface?

Something like $session.var += 1 per time the dialog steps in a certain page (state).
Guzmán GP
  • 51
  • 2
  • 6
0
votes
2 answers

Is there a default variable with user's input as value in Dialogflow CX?

For example, if I want to verify if there is a keyword in the user's utterance but I dont want to train an intent nor use form params, just the fullfilment's condition field such as: $user.input : "keyword" Translated has... does the user's…
Guzmán GP
  • 51
  • 2
  • 6
0
votes
1 answer

Add user token to Dialogflow df-messenger from browser

I want to be able to add a user's token when using the Dialogflow messenger chatbot
Dev138
  • 334
  • 1
  • 13
0
votes
0 answers

DialogFlow com.google.apps.framework.request.NotFoundException: No DesignTimeAgent

I've tried multiple times creating a chatbot with dialogflow. I call dialogflow from nodejs api. In details I try to call detectIntent but always I receive this error: com.google.apps.framework.request.NotFoundException: No DesignTimeAgent. I have…
0
votes
1 answer

Can I get all Route Fulfillment messages in Dialogflow CX by python API?

In my Dialogflow CX flow I have a Route which answers to some detected Intent. And here I can type many variations to answer - in Fulfillement section "Agent says". When I use it by API I got only 1 answer (in…
Zext
  • 25
  • 4
0
votes
1 answer

DialogFlow CX syntax for conditional blocks and responses

With google's new visual DialogFlow CX builder I am passing in a parameter to a Flow. The simulator shows the parameter is set and I can access it with $session.params.anger but wondering how session/page/intent params are set. Also what is the…
dcsan
  • 11,333
  • 15
  • 77
  • 118
0
votes
2 answers

Improve transcription accuracy with speech adaptation boost when using google telephony?

I know how we can provide the audio config to improve the ASR when using some third party telephony partners like twilio etc. But how can we provide the audio config for boosting and improving ASR when using google telephony gateway?
0
votes
1 answer

How to use webhook to transition from one page to another in Dialogflow CX

I am trying to make a bot that can book meeting rooms. Flow is pretty simple so far: Flow From the check meetingroom availability page I want to transition to either a page called "ledig" if the desired meeting room is vacant or a page called…
Kenneth
  • 3
  • 2