ChalkBotX is an intelligent chatbot designed to assist students with their academic queries. It allows students to ask questions by uploading PowerPoint presentations (PPT), PDF files, images, or scanned books, and the chatbot will provide relevant answers.
- Samyuktha M S - 20Z243
- S Charumathi - 20Z240
- Shifa Mohamed Ibrahim - 20Z249
- Glory C J - 21Z433
- Darsana R - 20Z212
-
Upload Files: Students can upload their academic materials, such as PPTs, PDFs, images, or scanned books.
-
Ask Questions: Using natural language, students can ask questions related to the uploaded materials.
-
AI Processing: ChalkBotX analyzes the content and generate appropriate responses.
-
Instant Replies: The chatbot provides instant replies with answers, explanations, or suggestions based on the uploaded materials.
- Clone the repository locally.
git clone https://github.com/samyuktha-12/ChalkBotX
cd ChalkBotX
-
In .env file add the OpenAI API key as follows. Get OpenAI API key from this URL. You need to create an account in OpenAI webiste if you haven't already.
OPENAI_API_KEY=your_openai_api_key
-
Create a virtualenv and activate it using anaconda, if not present install it.
conda create -n .venv python=3.11 -y && conda activate .venv
-
Run the following command in the terminal to install necessary python packages:
pip install -r requirements.txt
-
Run the following command in your terminal to start the chat UI:
chainlit run app.py
You will be redirected to the web browser.
-
Use the following command to deactivate the environment
conda deactivate