Questions tagged [dialogflow-es]

Dialogflow ES is the "classic" version of Dialogflow from Google, providing a Natural Language Understanding system you can integrate with your programs, and allowing you to build simple conversational agents or chatbots for a variety of platforms using an API or web-based UI. For the more complicated flow-based tool from Google, see the dialogflow-cx tag. For specific issues writing webhook fulfillments, see the dialogflow-es-fulfillment tag.

Dialogflow ES is a basic Natural Language Understanding system that is suitable for small to medium and simple to moderately complex conversational agents. Intents are the building blocks of conversation design, and contexts are used to control conversation paths.

Formerly known as just "Dialogflow", and before that as "api.ai", Dialogflow ES consists of several components, including

  • An API that allows you to determine Intents from a text or spoken phrase
  • Some pre-built integrations with common chat or conversation platforms
  • An API and web-based UI that lets you build and manage the NLU model
  • The ability to apply business logic through webhook fulfillments

Questions specifically about the fulfillment webhook should be tagged .

There is a more advanced version, Dialogflow CX, which offers a more complicated conversation design model based around flows, and a more visual design tool. It is, however, completely incompatible with Diallogflow ES. Questions about Dialogflow CX should be tagged .

5530 questions
1
vote
1 answer

Dialogflow suggest the next best intents as a response

I'm using GCP's Dialogflow as an SMS chatbot and users often text keywords over exact sentences/questions. This causes the intent the bot responds with to be close to what the user wants but not always the exact response because of overlapping…
cparry
  • 11
  • 1
1
vote
1 answer

writing more than one parameter to a firestore database with dialogflow

I have created a dialogflow agent to register some informations from the users, aind i need to write these answers as the same document for each user, but the code i made is writing each answer to an individual document instead of all of them as…
1
vote
1 answer

How to handle Dialogflow list response

I am developing an app for Google Assistant using Dialogflow (using Dialogflow online interface, without any external server). I have a list of products. Each product has an intent which is trained with its product name. For example if I say…
risk
  • 908
  • 10
  • 20
1
vote
1 answer

Not able to add data to firestore using dialogflow fulfillment

I want to send data to my firestore using dialogFlow fulfillment but it is not working. Here is my index.js: // See https://github.com/dialogflow/dialogflow-fulfillment-nodejs // for Dialogflow fulfillment library docs, samples, and to report…
1
vote
1 answer

How to get a specific item from JSON

I'm new to node.js and DialogFlow. I am using DynamoDB to store data and I'm creating skills on Google. I'm trying to write a code to retrieve a specific item on that table. I've got it working to show all items where ID is equal = 1, but how would…
vllnv
  • 13
  • 3
1
vote
1 answer

Not able to integrate DialogFlow with Firestore

I want to use Firestore in my DialogFlow bot but it shows certain errors. This is my index.js code: function writeToDb () { console.log(`Inside writeToDb`); // Get parameter from Dialogflow with the string to add to the database const…
Shashank Gupta
  • 315
  • 1
  • 4
  • 16
1
vote
0 answers

Dialogflow: Regexp entity not matched

I am going crazy with this problem, I am sure I am missing something... I would like to match words that start with 2 characters or digits, followed by 1 or more character/digit/slash. Some examples: AM9 B9C AS/1 etc... So I have created an…
Lorenzo S
  • 1,397
  • 13
  • 25
1
vote
1 answer

How to create intent in DialogFlow which ping user after sometime. like alarm?

I know how to make intents in dialogflow and a little working with webhook. I need to create an alarm intent which ping user after some time. Is there any solution to follow. I also saw default alarm intent in dialogflow example, but it does not…
LEO
  • 27
  • 1
  • 8
1
vote
1 answer

Can you invoke the same useState hook within the same function more than once?

So amidst refactoring my class based chatbot component to use react hooks I came across a problem with the useState hook overwriting the object in the state. This lead to only the bot responses showing up in the UI. When I chat with the bot, a flash…
1
vote
0 answers

How can I keep Dialogflow followup intents nested when adjusting default contexts?

We're developing a system that encapsulates content through context. The context names that Dialogflow generates aren't very readable, so we've been adjusting them in the files directly. This works for a batch of content, but when we add a new…
1
vote
1 answer

Reading data out of datastore with dialogflow

I'm doing a chatbot similar to helpdesk (Dialogflow - inline editor). I'm able to write to datastore but I`m facing some issues with read out of data, it is a basic operation of finding UserID but code is not kicking off -please help code below.…
1
vote
1 answer

Dialogflow - Repeat last sentence (voice) for Social Robot Elderly

I am using actions-on-google and Dialogflow to build a social robot for Elderly. I was wondering how I can easily repeat the last sentence when asked by the user ("repeat please") as often the Senior doesn't hear the sentence the first time. One…
DeMelkbroer
  • 629
  • 1
  • 6
  • 21
1
vote
1 answer

Technical advantages of Rasa framework compared to Dialogflow

I have been using Rasa for building bots with somewhat complex stories. I have even started using slightly modified custom training components in the pipeline. However, I was requested to perform a detailed comparison of Rasa vs Dialogflow and I…
Thusitha
  • 145
  • 8
1
vote
1 answer

Dialogflow bot not responding

I have been following this tutorial, and I can't seem to get my bot to respond. I get the following attached message: I have added the correct dialogflow json credentials to yaml folder, and they seem to be fine. Any help would be mush…
C.Calzana
  • 581
  • 2
  • 6
  • 10
1
vote
1 answer

Is it better to incorporate motion sensor and sound files in google assistant - or a python based audio chatbot programme?

I want to incorporate a few new things in an audio chatbot. Can I please check the best way to do it? - I want to record actor's voices to replace the chatbot's default computerised voice - I want to include sound files that play on demand (and…
1 2 3
99
100