Welcome to the AI Laptop Guide Chatbot! This intelligent chatbot helps you with laptop buying recommendations, budget tips, and technical specifications. It uses Natural Language Processing (NLP) and Machine Learning to understand your queries and provide relevant responses.
You can access the hosted application at this link.
- Laptop recommendations based on your needs
- Budget-friendly options
- Technical specifications explanation
- Gaming laptop suggestions
Before you begin, ensure you have the following installed on your machine:
- Python 3.8 or higher
- pip (Python package installer)
-
Clone the repository to your local machine:
git clone https://github.com/yourusername/ai-laptop-guide-chatbot.git cd ai-laptop-guide-chatbot -
Install the required packages:
pip install -r requirements.txt
Ensure you have the necessary NLTK data files. You can download them using the following Python commands:
import nltk
nltk.download('punkt')
nltk.download('stopwords')