Spaces:
Sleeping
Sleeping
Update requirements.txt
Browse files- requirements.txt +18 -15
requirements.txt
CHANGED
|
@@ -1,29 +1,32 @@
|
|
|
|
|
| 1 |
fastapi==0.95.2
|
| 2 |
uvicorn==0.22.0
|
| 3 |
pydantic==1.10.11
|
| 4 |
python-multipart==0.0.6
|
|
|
|
|
|
|
|
|
|
| 5 |
pytesseract==0.3.10
|
| 6 |
Pillow==10.0.0
|
|
|
|
| 7 |
PyMuPDF==1.22.5
|
| 8 |
-
|
| 9 |
-
|
| 10 |
spacy==3.6.0
|
| 11 |
-
negspacy==0.1.
|
| 12 |
fuzzywuzzy==0.18.0
|
| 13 |
python-Levenshtein==0.21.1
|
|
|
|
|
|
|
|
|
|
| 14 |
transformers==4.32.1
|
|
|
|
| 15 |
torch==2.0.1
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
numpy==1.25.2
|
| 19 |
-
transformers>=4.32,<4.34
|
| 20 |
-
torch==2.0.1
|
| 21 |
-
Pillow==10.0.0
|
| 22 |
-
spacy==3.6.0
|
| 23 |
-
negspacy==0.1.6
|
| 24 |
-
fuzzywuzzy==0.18.0
|
| 25 |
-
python-Levenshtein==0.21.1
|
| 26 |
pandas==2.0.3
|
| 27 |
-
|
|
|
|
|
|
|
| 28 |
firebase-admin==5.1.0
|
| 29 |
-
|
|
|
|
| 1 |
+
# --- API ---
|
| 2 |
fastapi==0.95.2
|
| 3 |
uvicorn==0.22.0
|
| 4 |
pydantic==1.10.11
|
| 5 |
python-multipart==0.0.6
|
| 6 |
+
python-dotenv==1.0.0
|
| 7 |
+
|
| 8 |
+
# --- OCR / imaging ---
|
| 9 |
pytesseract==0.3.10
|
| 10 |
Pillow==10.0.0
|
| 11 |
+
opencv-python-headless==4.7.0.72
|
| 12 |
PyMuPDF==1.22.5
|
| 13 |
+
|
| 14 |
+
# --- NLP ---
|
| 15 |
spacy==3.6.0
|
| 16 |
+
negspacy==1.0.2 # 0.1.x is for spaCy 2; use >=1.0 for spaCy 3
|
| 17 |
fuzzywuzzy==0.18.0
|
| 18 |
python-Levenshtein==0.21.1
|
| 19 |
+
regex==2023.8.8
|
| 20 |
+
|
| 21 |
+
# --- Transformers / Torch ---
|
| 22 |
transformers==4.32.1
|
| 23 |
+
tokenizers==0.13.3 # matches transformers 4.32.x on py3.9
|
| 24 |
torch==2.0.1
|
| 25 |
+
|
| 26 |
+
# --- Data ---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 27 |
pandas==2.0.3
|
| 28 |
+
numpy==1.25.2
|
| 29 |
+
|
| 30 |
+
# --- Cloud / APIs ---
|
| 31 |
firebase-admin==5.1.0
|
| 32 |
+
google-generativeai==0.3.1 # add this if your app calls Gemini
|