How to manage context from your Python webhook in Dialogflow ES

How to manage context from your Python webhook in Dialogflow ES

First published: 2017 | Last Updated: May 2022 This tutorial used to refer to inline webhooks before. But I have updated it to use a simple Python based webhook for two reasons: I don’t recommend using the fulfillment library and Python is better suited than NodeJS for Dialogflow bots. The problem A little while back…

Get your DialogFlow agent to initiate the conversation before user types a message

Get your DialogFlow agent to initiate the conversation before user types a message

First published: Aug 2017 | Last Updated: May 2022 So let us understand the question: When you work with Dialogflow you notice that it follows the “user types something -> agent replies with an answer” sequence. Suppose you wish to get the agent to say something before the user types anything, how do you do…

How to collect user input without follow up intents in Dialogflow ES

How to collect user input without follow up intents in Dialogflow ES

First published: Nov 2017 | Last updated: May 2022 Sometimes I see questions like these in the Dialogflow forum. So, I got one intent working. How can I now “move” the conversation to the next intent? Answer In Intent1, declare an output context called contextA. In the next intent you want to fire, use contextA…

3 Ways spaCy can help improve Dialogflow accuracy

3 Ways spaCy can help improve Dialogflow accuracy

spaCy is a free open-source library for Natural Language Processing in Python. You can use it to improve the accuracy of your Dialogflow bots. This is somewhat advanced material, and also requires that you already have a Python programmer on your team who is familiar with the basics of Natural Language Understanding (NLU) Automatically group…

How to integrate Dialogflow into your WordPress website for free

How to integrate Dialogflow into your WordPress website for free

I recently saw a question on StackOverflow. Given that there are now two versions of Dialogflow, and multiple different ways to integrate the chatbot into your WordPress website in 2021, this topic is worth a revisit. In this article, I talk about the FREE options for integrating a Dialogflow bot into your WordPress website. Dialogflow…

How to get any related list information in Zoho CRM using Deluge Script

How to get any related list information in Zoho CRM using Deluge Script

If you use Zoho CRM, you can actually get all the information associated with a given lead by following a simple script. In my case, I am interested in getting information about Visits for users of my BotFlo app. You can follow this method and get the information for all the related lists associated with…