Spaces:
Running
Running
Update requirements.txt
Browse files- requirements.txt +18 -46
requirements.txt
CHANGED
@@ -1,50 +1,22 @@
|
|
1 |
-
|
2 |
-
# FastAPI & ASGI Server
|
3 |
fastapi
|
4 |
-
uvicorn
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
sentencepiece
|
13 |
-
|
14 |
-
# PDF, DOCX, PPTX, XLSX parsing
|
15 |
-
PyMuPDF
|
16 |
python-docx
|
17 |
-
|
|
|
18 |
openpyxl
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
numpy
|
24 |
-
|
25 |
-
# OCR for printed text
|
26 |
easyocr
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
# Image processing
|
32 |
-
Pillow
|
33 |
-
|
34 |
-
# Retrieval & QA (lightweight FAISS/Chroma)
|
35 |
-
faiss-cpu
|
36 |
-
chromadb
|
37 |
-
|
38 |
-
# Optional: Graph extraction
|
39 |
-
ultralytics # YOLOv8
|
40 |
-
|
41 |
-
# Optional: Speech I/O
|
42 |
-
gtts
|
43 |
-
SpeechRecognition
|
44 |
-
pyaudio # only for local dev; may need to be replaced/removed for HF Spaces
|
45 |
-
|
46 |
-
# Utils
|
47 |
-
tqdm
|
48 |
-
aiofiles
|
49 |
-
python-multipart
|
50 |
-
jinja2
|
|
|
|
|
|
|
1 |
fastapi
|
2 |
+
uvicorn
|
3 |
+
gradio==3.50.2
|
4 |
+
pandas
|
5 |
+
matplotlib
|
6 |
+
seaborn
|
7 |
+
transformers
|
8 |
+
torch
|
9 |
+
pdfplumber
|
|
|
|
|
|
|
|
|
10 |
python-docx
|
11 |
+
pydantic<2.0
|
12 |
+
tools
|
13 |
openpyxl
|
14 |
+
pytesseract
|
15 |
+
deep-translator
|
16 |
+
frontend
|
17 |
+
pillow
|
|
|
|
|
|
|
18 |
easyocr
|
19 |
+
python-pptx
|
20 |
+
pymupdf
|
21 |
+
tika
|
22 |
+
hf_xet
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|