Chatbot example
A basic Python chatbot that uses regular expressions and the NLTK library for natural language processing. This chatbot responds to simple queries and can be expanded with more sophisticated patterns.
- Responds to simple greetings
- Answers questions like "How are you?" or "What is your name?"
- Can be extended with more patterns and responses
- Python 3.x
nltk
library (you can install it usingpip install nltk
)
- Clone the repository to your local machine.
- Install the
nltk
library if you haven't already:pip install nltk