You are on page 1of 11

CHATBOT

Domain- Chatbot

 A chatbot is defined as a developed program that


simulates conversation between machine and humans
In the form of
• Voice or
• Text
proposed system
 A chatbot is created to facilitate the users to gather
informations about covid easily

 Here, It is created using python platform

 As it is a web based application users can easily access it


Flowchart
Modules used
*Flask
pip install flash
Flask is a web framework, it's a Python module that lets you develop web applications
easily

Chatterbot
*Pip install chatterbot
ChatterBot is a Python library that makes it easy to generate automated responses to
a user’s input.
*Chatterbot corpus
pip install chatterbot_corpus
language resource consisting of a large and structured set of texts

*spaCy
*pip install spacy
an open source library for advanced Natural Language Processing
steps involved
Steps involved:

 1) Installed python

 2) A virtual environment is being created

 2) All the required packages are installed using


chatterbotlibrary, into the virtual environment

 2) created out a set of questions and it's answers into a


separate file called personal ques inside training data
 3) Then we created an instance of chatterbot and trained out chatbot
using ListTrainer with above questions.

 4) Using flask(web framework) module we integrated our front end


page created in html

 5) Questions asked in html page is parsed to our chatbot and


response were again displayed back in the htmlpage
screenshots

You might also like