This project focuses on developing a chatbot powered by a custom Large Language Model (LLM). It leverages state-of-the-art NLP techniques to generate human-like responses, making it suitable for customer support, conversational AI, and personalized user interactions.
To set up the LLM-based chatbot on your local machine, follow these steps:
git clone https://github.com/coding4vinayak/englishchatbot
cd englishchatbot
python3 -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
pip install -r requirements.txt
To start the chatbot server, run the main script:
python chatbot_server.py
The chatbot will be accessible via a web interface, allowing users to interact in real-time.
View Project on github