Updated on March 12, 2024

Flask is a micro web framework written in Python, while Dialogflow is Google’s NLU powered chatbot development framework. Dialogflow chatbots enable enterprises to automate customer interactions, provide instant support and also personalization at scale.

But why use Flask for chatbot development? Here are the benefits listed:

Benefits of using Flask:

  1. Customization: Flask has a minimalist and modular design. Developers can thus build chatbots that are specifically tailored to meet the needs of enterprises. You can customize every aspect of the chatbot’s behavior using Flask.
  1. Scalability: Flask is lightweight, meaning it can be used to build scalable chatbots that can handle a lot of concurrent requests. Flask-based chatbots can be deployed by Enterprises on Google Cloud Platform or AWS, ensuring smooth performance.
  1. Easy Deployment: In enterprise settings, rapid deployment and iteration are essential to stay ahead of the competition. This is possible with the help of Flask, where you can quickly deploy chatbots to production environments. This also minimizes downtime and accelerates the time to market.

Do you want to find out more about the dialogflow? Check out these articles:

Pre-requisites:

Before starting to build your chatbot with Dialogflow and Flask. We need to gather some essential tools and prepare the environment. Consider this your pre-flight checklist for a smooth journey:

  1. You will need a Dialogflow account, and a Kommunicate account to deploy the chatbot. 
  2. You will need Python and Flask frameworks installed on your system. For more info about the Flask framework, please refer to this link.

We will be using Flask in this tutorial. If you are looking to add a Dialogflow chatbot to the Django framework, you can see this tutorial.

Steps to Add Dialogflow Chatbot to Flask

Step 1: Create an agent

Login to the Dialogflow console. An agent is just a chatbot. You can train the agent with training phrases and corresponding responses to handle expected conversation scenarios with your end-users.

Click the dropdown near the Agent settings, then click Create new agent, provide an agent name (For example – Python-Demo), then click CREATE.

dialogflow chatbot python - creating an agent

Step 2: Create an intent

An intent categorizes end-user’s intention for one conversation turn. For each agent, you can define many intents. When an end-user writes or says something, referred to as an end-user expression, Dialogflow matches the end-user expression to the best intent in your agent.

Click the CREATE INTENT button and provide an intent name (for example, python-demo) and save.

dialogflow chatbot python - create an intent

Step 3: Add training phrases

These are example phrases for what end-users might say. When an end-user expression resembles one of these phrases, Dialogflow matches the intent.

Click the intent created (python-demo) and add the user phrases in the Training phrases section.

dialogflow chatbot python - add training phrases

🚀  Here’s a video for you on creating a Dialogflow chatbot and learning more about agents, intents, and entities:

Step 4: Enable fulfillment

After adding an intent, you don’t need to add agent responses in the Responses section. Since we are using Flask for the same, you need to enable webhook for this intent. The webhook will help us transfer data and responses between Dialogflow and Flask. Dialogflow provides webhook services via Dialogflow Fulfillment.

Fulfillment is a code deployed through a web service to provide data to a user. You can enable webhook calls for all those intents that require some backend processing, database query, or third-party API integration.

Under the Fulfillment section, click Enable webhook for this intent and save the intent.

dialogflow chatbot python - enable fulfillment

Dialogflow fulfillment has two options – Webhook and Inline Editor. The inline editor is also a webhook but hosted by Google cloud functions. We are going to use the webhook.

Go to the “Fulfillment” section & enable Webhook.

dialogflow python chatbot - enable fulfillment

Step5: Use Python with Flask & enable the webhook server

The webhook requires a URL, and it should be an HTTPS protocol. The webhook URL will receive a POST request from Dialogflow every time an intent triggers the webhook.

We are using Python programming language and Flask framework to create the webhook.

Create a file (for example – app.py). Import all the necessary libraries (ex: os, JSON, send_from_directory, request) needed for Python. Please check if you have Flask on your system. If not, install it using pip, and here’s the documentation for the same.

import flask
import json
import os
from flask import send_from_directory, request

To handle all the agent webhook requests, we need to define and add a route/webhook method with a POST request. A POST request will be sent to this URL /webhook. It executes all the methods inside the method.

Also, a fulfillment text is added to return that when it triggers the training phrase from Dialogflow.

If you need to add more conditions & responses, you can define them inside the webhook method.

<pre class="wp-block-code"><code># Flask app should start in global layout
app = flask.Flask(__name__)

@app.route('/favicon.ico')
def favicon():
    return send_from_directory(os.path.join(app.root_path, 'static'),
                               'favicon.ico', mimetype='image/favicon.png')

@app.route('/')
@app.route('/home')
def home():
    return "Hello World"

@app.route('/webhook', methods=&#91;'POST'])
def webhook():
    req = request.get_json(force=True)
    print(req)

    return {
        'fulfillmentText': 'Hello from the bot world'
    }

if __name__ == "__main__":
    app.secret_key = 'ItIsASecret'
    app.debug = True
    app.run()</code></pre>

Step 4: Use Ngrok to create Public Url

After setting up the Python process, let’s use Ngrok to create a public URL for the webhook and listen to port 3000 (in this example). For Dialogflow fulfillment, you will need an HTTPS-secured server since the local server (localhost) will not work. You can also use a server and point a domain with HTTPS to that server.

You will get a URL like https://f3e3a29d7ae9.ngrok.io/webhook where the webhook is the POST route for Dialogflow we mentioned in the Python file.

Copy the URL you created (In this example – https://f3e3a29d7ae9.ngrok.io/webhook) and paste it into the Dialogflow fulfillment URL field.

dialogflow python chatbot - fulfillment

dialogflow chatbot python - The chat UI

Step 7: Add chatbot to Python

Once the Dialogflow setup is done, you can easily add it to your website or apps using Kommunicate & test the Python chatbot working.

Wrapping Up

How easy was that? In a few simple steps, you can add a Dialogflow chatbot to your Python frameworks. Do try this out and let us know in the comments. We would love to try your chatbot out.

Frequently Asked Questions(FAQs)

1. What are the benefits of using Dialogflow and Flask for building a chatbot? 

Dialogflow: User-friendly interface, pre-built NLP features, flexible integration options. 

Flask: Lightweight and versatile, allows for custom logic and flexibility. 

Combination: Cost-effective, powerful, and easy to learn compared to other platforms.

2. What types of chatbots can I build with Dialogflow and Flask? 

This combination allows you to build a wide range of chatbots, from simple FAQ bots to more complex conversational assistants. The possibilities are limited only by your imagination and skills.

3. Can I deploy my chatbot publicly with this method? 

Absolutely! We’ll discuss different deployment options, including local testing and cloud platforms, depending on your needs.

4. Can I use your code snippets directly in my project? 

Yes, the code snippets in this blog are provided for your reference and learning purposes. Feel free to adapt and integrate them into your own project, tailoring them to your specific needs.

5. What are the limitations of using this method for building chatbots? 

While powerful, using Dialogflow and Flask together may have limitations depending on your complexity requirements. For extremely complex chatbots with advanced AI features, exploring specialized bot development platforms might be necessary.

Write A Comment

Close

Devashish Mamgain

I hope you enjoyed reading this blog post.

If you want the Kommunicate team to help you automate your customer support, just book a demo.

Book a Demo

You’ve unlocked 30 days for $0
Kommunicate Offer

Upcoming Webinar: Conversational AI in Fintech with Srinivas Reddy, Co-founder & CTO of TaxBuddy.

X