Spaces:
Sleeping
Sleeping
Update README.md
Browse files
README.md
CHANGED
@@ -1,14 +1,28 @@
|
|
1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
|
3 |
-
|
4 |
|
5 |
-
|
6 |
-
- Multilingual PDF support
|
7 |
-
- Mistral 7B Instruct for Q&A
|
8 |
-
- SentenceTransformers for embeddings
|
9 |
-
- Exportable answers in Gradio
|
10 |
|
11 |
-
##
|
12 |
-
|
13 |
-
|
14 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
title: Smart PDF Assistant
|
3 |
+
emoji: π
|
4 |
+
colorFrom: blue
|
5 |
+
colorTo: indigo
|
6 |
+
sdk: gradio
|
7 |
+
sdk_version: "4.20.0"
|
8 |
+
app_file: app.py
|
9 |
+
pinned: true
|
10 |
+
---
|
11 |
|
12 |
+
# Smart PDF Assistant ππ€
|
13 |
|
14 |
+
This Gradio app allows you to upload multiple PDF files and ask questions based on their content using Retrieval-Augmented Generation (RAG) and local language models.
|
|
|
|
|
|
|
|
|
15 |
|
16 |
+
## Features
|
17 |
+
- π Upload multiple PDFs
|
18 |
+
- π Ask questions with natural language
|
19 |
+
- π§ Answers generated from document content (not hallucinated)
|
20 |
+
- π Supports Arabic and English
|
21 |
+
- π§Ύ Export answers to TXT or PDF
|
22 |
+
|
23 |
+
---
|
24 |
+
|
25 |
+
## Run locally:
|
26 |
+
```bash
|
27 |
+
pip install -r requirements.txt
|
28 |
+
python app.py
|