Skip to content

Latest commit

 

History

History

Chat-Bot

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Star Badge Open Source Love

Hello-to-CHATBOT

A chatbot is a computer software able to interact with humans using a natural language. They usually rely on machine learning, especially on NLP.

⚙️🛠️Preparing Dependencies:

You’re only going to install the library ChatterBot for now. I recommend creating and using a new Python virtual environment for this purpose. Execute the following commands in your Python terminal:

run these command:

pip install chatterbot
pip install chatterbot_corpus

You can also try upgrading them:

pip install --upgrade chatterbot_corpus
pip install --upgrade chatterbot

That’s it. We’re ready to go.

Communicating with a Bot🤖

You can communicate with your bot using its method .get_response(). Here’s an example of how that might look like : Screenshot 2022-07-09 133433