File size: 594 Bytes
3f7f9d9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# StudyMate: AI-Powered PDF-Based Q&A System

StudyMate allows students to upload a PDF and ask questions using a powerful RAG-based AI model.

### πŸ’‘ Features
- πŸ“„ PDF Upload & Parsing
- πŸ” OCR and Content Extraction
- πŸ€– RAG-based Q&A using Hugging Face
- 🌐 Built with Streamlit, deployable on Hugging Face Spaces

### πŸš€ How to Run

```bash
pip install -r requirements.txt
streamlit run main.py
```

### πŸ“ Folder Structure

```
studymate/
β”œβ”€β”€ main.py
β”œβ”€β”€ requirements.txt
β”œβ”€β”€ README.md
└── backend/
    β”œβ”€β”€ ocr.py
    └── rag_model.py
```