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 FulfillmentText doesn't appear in the chat Default Response

I created a webhook for my agent, it works fine, I got a successful response from my webhook: But I got no response in the test chat: What I need to do to show it in the Default Response?
xNesski
  • 11
  • 2
1
vote
1 answer

PHP Fatal error: Cannot redeclare issue with Google Dialogflow PHP API

Having an issue with Google Dialogflow. I keep getting an error: PHP Fatal error: Cannot redeclare Google\Cloud\Samples\Dialogflow\detect_intent_texts() (previously declared in…
fixnode
  • 97
  • 3
  • 8
  • 32
1
vote
2 answers

How to set output contexts while creating a intent in dialogflow PHP?

I am trying to set output context to a particular intent via v2 create intent API. Please check my code. use Google\Cloud\Dialogflow\V2\SessionsClient; use Google\Cloud\Dialogflow\V2\TextInput; use Google\Cloud\Dialogflow\V2\QueryInput; use…
1
vote
0 answers

Dialogflow chatbot integration with Dialogflow

I have been following google codelab's exercise to integrate dialogflow chatbot with django web app and deploy it on google cloud platform. But I am unable to do so. Please help me out as I am fairly new to all of these and I have been trying a lot…
Aakash
  • 47
  • 1
  • 1
  • 10
1
vote
1 answer

Where to find Dialogflow javascript function documentation?

I have started learning Dialogflow using the codelabs tutorials provided by Google and am searching for the javascript documentation for dialogflow module. For example, I have this code: const {dialogflow} = require('actions-on-google'); const…
1
vote
1 answer

How can I send my dialogflow chat history to my admin panel ?( As it an ordering app , sorted data should be sent to admin panel)

As it my ordering app , orders should be sorted and sent to admin panel or just I shall be able to retrieve order from bots chat history . How to retrieve chat or an order list and Name ,address, etc from google dialogflow and send to admin panel…
1
vote
1 answer

Store Facebook ID to Firebase using dialogflow inline editor

Hi I have created a fb chatbot using dialogflow which saves specific user inputs to firebase . Is there a way to also store the fb id of the user in firebase . heres what I've got so far. function getNameHandler(agent) { let code =…
user6537067
  • 357
  • 2
  • 6
  • 16
1
vote
0 answers

Dialogflow - Sentiment analysis - SentimentAnalysisResult obj is null sometimes

I am trying to do sentiment analysis from the c# code. I have enabled the sentiment analysis to true. DetectIntentRequest detectIntentRequest = new DetectIntentRequest(); detectIntentRequest.QueryInput = queryInput;…
Ganesh
  • 103
  • 12
1
vote
1 answer

Account linking Google Assistant

I actually looking for an answer for my problem of account linking on Google Assistant. Sorry, the screens are in french but I can translate all if it's necessary to understand. I followed the google account linking documentation until "implement…
1
vote
1 answer

Getting google assistant to respond in another language

I've set up an app/agent in google's Dialogflow. I've gotten my assistant to talk to it, and perform Web-hooks to a service that i've set up. The user talks to the google assistant in English, the service Google is talking to, essentially just…
Torxed
  • 22,866
  • 14
  • 82
  • 131
1
vote
0 answers

Does Google Dialogflow custom payloads have a Call Function in Telegram?

I had integrated Dialogflow in both Facebook Messenger & Telegram. In FB messenger, when a user press a button, it will opens the user's phone dialing pad and calls the number. Here's the code: //FB Messenger code { "facebook": { …
Shang Rong
  • 77
  • 1
  • 1
  • 6
1
vote
0 answers

Error when importing Dialogflow in Python

I downloaded a project in which dialogflow is used, from a repo. However, it showed an error on my pycharm "run". The error itself says django.core.exceptions.ImproperlyConfigured: The included URLconf 'quiniela.urls' does not appear to have any…
1
vote
1 answer

Can the Dialogflow Client API (NodeJS) work in a stateless manner?

I am looking at developing a solution with Dialogflow, where the User Interface events (e.g. Typed user input) are going to arrive as http REST events. The problem with this is that the Dialogflow Client API (Note: This is NOT THE SAME THING as the…
spechter
  • 2,058
  • 1
  • 17
  • 23
1
vote
0 answers

Messenger not loading Dialogflow Cards with certain urls

I am trying to add a card in my intent with a button that links to the following URL: LINK However, when it's triggered in Facebook Messenger, the card loads but never shows. If I change the url to other links (such as Google's) it works as…
1
vote
0 answers

use dialogFlow custom payload to send image in whatsapp

Good evening! Everything is configured with whatsapp. I use auto reply app and dialogFlow to make a little robot that automatically responds to certain things already ordered on whatsapp. The problem is that I can only use text as an answer; I would…
beginbouba
  • 11
  • 1
1 2 3
99
100