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 CX webhook timeout response

I am integrating dialogflow CX with Botcopy using a webhook, my question is if there is a way to add an timeout response, like when the connection to my webhook is down, in Botcopy it stays with the 3 dots indefinitely, and I wanted to check if…
ger
  • 35
  • 5
0
votes
0 answers

How to annotate a training phrase with @sys.any system entity in Dialogflow CX usign Java client library

How to add system entity entity type in the intent parameter to set in training phrase. sys.any does not have any id. Tried using sys.any @sys.any as entity type id but didnt work. We have ids for custom entitys but didnt see a specific id for…
0
votes
0 answers

How to offer a route to a percentage of people in dialogflow CX

I'm trying to figure out a solution to the following issue. When customers call us, we want the ability to offer 50% of them, the opportunity to take a different path. How can we split customers by a percentage? One solution we've thought of is…
0
votes
0 answers

How do I bypass/workaround dialogflow 256 character limit for detect intent text input length?

I'm new to dialogflow and was messing around trying to get a basic IVR working. I'm trying to get a long response and was using the "@sys.any" entity to take in the response, but it has a maximum detect intent text input length of 256 characters…
0
votes
0 answers

Capture data from user in dialogflow throw nodejs

im having some issues in order to capture data that the user write in dialogflow. I need to capture that data in order to replace a query to a sql server to provide information to the user that is asking. For example. user: can you give me some…
0
votes
0 answers

How to connect Dialowflow and Messenger

I have been trying to connect my chat bot from dialog flow to the messenger of my Facebook page and i can't. I already try with an app from Meta Developers but when i try to connect the Webhook whit the URL from dialog flow the app shows a message…
0
votes
1 answer

Set parameter using webhook in Dialogflow CX

I am creating a chatbot to manage customers support. I have a flow called "Products Problem". It should detect what type of product is concerned and redirect to another flow specific to that type. The idea here is to make smaller flows that are…
Thbwun
  • 323
  • 1
  • 3
  • 14
0
votes
0 answers

How to generate dialogflow intent, training phrases and text response from the given document using LLM and chatgpt

I am working on a project in which, I can scrape user's website, and from that scraped content, I need to generate personalised dialogflow intent, training phrases and text response using LLM, pinecone and ChatGPT. Right now I can generate intent,…
0
votes
0 answers

How can I scroll to the bottom of the chat when opening it in Dialogflow Messenger CX using TypeScript?

I'm doing this code, but I don't think that it's a good pratctice. const dfMessenger = document.querySelector("df-messenger"); dfMessenger?.addEventListener("df-messenger-loaded", () => { const botao =…
0
votes
1 answer

How to use Dialogflow CX intents to recognize user input for product or general search?

TL;DR How to configure Dialogflow intents to recognize if the user user input contains the phrase "Search product:" and: If the input contains the phrase "Search product:" store everything after this phrase as "$session.parameter.prompt" and pass…
da-veed
  • 11
  • 2
0
votes
0 answers

How can I integrate Dialogflow CX on Flutter?

I use a package called dialogflow_flutter, but it only works with Dialogflow ES. I know there are other packages like dialogflow_grpc, but they are not currently compatible with Flutter 3. I want to know how to connect my flutter project with…
cali
  • 1
  • 3
0
votes
1 answer

What's the best way to handle alternate match intents in Dialogflow-CX chatbot when both intents have similar training phrases?

In my situation, There is 2 intent which has similar kind of training phrases. During the flow I am getting both the intent in alternate match intent in JSON response. I want a solution, if there is, this kind of situation I will take the both the…
0
votes
0 answers

Can't connect to Dialogflow CX API through Golang client

I am trying to connect to dialogflow CX through the golang client, but I keep getting the error "failed to get discovery job for dialogflow.googleapis.com:443". This is my code: import ( dialogflow "cloud.google.com/go/dialogflow/cx/apiv3" …
sfendell
  • 5,415
  • 8
  • 25
  • 26
0
votes
0 answers

How can I display DialogFlow CX transitions defined in route groups on the grid?

DialogFlow CX transitions defined in route groups are not displayed on the grid at all. Why is this? We shouldn't have to open a page, then open a route group just to see what transitions are happening in each group. It really makes the grid and…
0
votes
1 answer

Dialogflow CX - need to implement an "I need more time" functionality where the Agent waits for a longer period of time

Here is the context: we have a flow where we gather information from the user, and sometimes the user needs additional time to find a document or something like that. For example, the Agent asks "What is your driver's license number?", the user…
Al A
  • 175
  • 2
  • 15