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

message": "Webhook call failed. Error: UNAVAILABLE, State: URL_UNREACHABLE, Reason: UNREACHABLE_5xx, HTTP status code: 500." in dialogflow fulfillment

I am trying to send email using dialogflow intents from my gmail. But it throws the same error every time and I am unable to understand the issue behind this. The same thing stand alone from my code is able to send emaail to various email…
0
votes
0 answers

Error while trying to call detectintent api in nodejs-Dialogflow CX

I am trying to send a request to DetectIntent API from webhook - Dialog Flow CX . I downloaded service-key in GCP and stored in serviceaccount.json file .I created .env file and stored all the values from serviceaccount file to .env file.I get…
0
votes
1 answer

number of requests supported per second by watson assistance, dialog flow and amazon lex

I have been consulting and I have not been able to find out how many requests per second each one can receive without affecting its operation since in the different web pages of these services they give me data per month. thanks to whoever can help…
linkon
  • 31
  • 2
0
votes
0 answers

Send email to myself via Dialogflow CX

I read into some documentation but it's just my lack of expertise of coding and everything that I don't understand what to do... I have a chatbot on my website. If a customer is in the Chatbot I want to summarize all the information that the…
0
votes
1 answer

Access Dialog flow Context Variables in Vox implant, I have some parameters set in the dialog flow. I want to access those in Vox implant engine

My question is how can I access the parameters that are sent by dialog flow over the conversation? For example, When live agent hand off is done. I want to transfer to specific phone numbers which will come from dialog flow. In short, How Can I…
Aymal
  • 191
  • 12
0
votes
1 answer

Google Dialogflow utility for string to integer conversion

Is there a Google dialogflow CX function to convert String to Integer? Can a numeric value of String type compared with integer in dialog flow?
0
votes
1 answer

How to send a reminder from chatbot in Dialogflow CX?

Session in Dialogflow CX ends after 30 minutes and I'd like to send reminder to the end user after 20 minutes to answer the question. Can I do it in Dialogflow CX interface or it's only possible in my code? But then how do I detect intent of not…
crowlek
  • 85
  • 8
0
votes
1 answer

How to link Dialogflow CX agent to GCP Project Service Account?

I'm trying to link Dialogflow CX agent with service account on Google Cloud Platform console. This is for connecting my Dialogflow CX agent to node-red scenario. When I did it with Dialogflow ES it worked just fine. But with Dialogflow CX I just…
0
votes
0 answers

How do I overcome this error "Entity with key IntentTrainingPhrasKey" when restoring an agent in Dialogflow CX?

I have created a large bot and now after exporting it, I am getting this error when trying to restore it. Any tips on how to stop this error from happening? click here to view image
Max4c
  • 1
  • 1
0
votes
1 answer

Is any way to force one word responses in DialgoflowCX?

We are checking for a simple negative answer in our intent, but is we use "No" as a training phrase, it matches every input including that word: No (negative input, right) Of course, no problem (positive input, wrong) Are we missing something?
Troglo
  • 1,497
  • 17
  • 18
0
votes
1 answer

How do you speed up Dialogflow CX speech recognition on single word responses?

I have a Dialogflow CX agent working in polish [pl] language as an audio bot using AudioCodes. I want it to respond to yes/no answers (pl: "tak"/"nie"), yet it takes usually 15 seconds or more to detect the end of utterance. Enabling advanced speech…
Rhantolq
  • 3
  • 1
0
votes
1 answer

Dialogflow CX sys.date type not recognising "Morgen" (tomorrow in german)

The sys.date type in Dialogflow CX does not recognize the German word "Morgen" meaning (tomorrow) in English. The type recognizes "heute" (today), or even more complex phrases such as "der tag nach diesem tag" (the day after this day). But the…
0
votes
1 answer

Why does a regex entity have priority in Dialogflow CX?

I am establishing two entities in my Dialogflow CX agent: the first one, called "id" contains some numeric IDs that exist in my domain: e.g. 29042, 29145, 28248, ... the second one, "wrongId", is defined by a regex that is supposed to capture all…
0
votes
1 answer

What is the JSON schema to create Dialog flow CX agent via binary import?

https://cloud.google.com/dialogflow/cx/docs/reference/rest/v3/projects.locations.agents/restore Where can I get more information regarding the schema of input file and how do I parse .blob file received from exporting some agent?
0
votes
1 answer

Dialogflow CX $param not showing in agent text

I am getting into CX and have a simple agent going but I cannot get the agent to respond with my filled parameter. I have a page that asks for @DrinkFrequency and @DrinkChoice, I see both get filled correctly when I test the agent and…
Comet
  • 1