Spaces:
Sleeping
Sleeping
Update requirements.txt
Browse files- requirements.txt +30 -6
requirements.txt
CHANGED
@@ -1,10 +1,34 @@
|
|
1 |
-
|
2 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
pytesseract==0.3.10
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
torch==2.0.1
|
8 |
sentencepiece==0.1.99
|
|
|
|
|
|
|
|
|
9 |
|
|
|
|
|
10 |
|
|
|
|
|
|
|
|
|
|
1 |
+
# Core Libraries
|
2 |
+
streamlit==1.29.0
|
3 |
+
transformers==4.36.2
|
4 |
+
torch==2.1.2
|
5 |
+
pillow==10.2.0
|
6 |
+
python-dotenv==1.0.0
|
7 |
+
|
8 |
+
# PDF Processing
|
9 |
+
pymupdf==1.23.7
|
10 |
+
|
11 |
+
# Concurrent Processing
|
12 |
+
concurrent-futures==3.4.0
|
13 |
+
|
14 |
+
# Logging
|
15 |
+
logging==0.5.1.2
|
16 |
+
|
17 |
+
# Optional: For image processing and OCR
|
18 |
pytesseract==0.3.10
|
19 |
+
opencv-python-headless==4.8.1.78
|
20 |
+
|
21 |
+
# Translation and NLP Models
|
|
|
22 |
sentencepiece==0.1.99
|
23 |
+
sacremoses==0.1.1
|
24 |
+
|
25 |
+
# Optional: Model caching and performance
|
26 |
+
huggingface-hub==0.20.3
|
27 |
|
28 |
+
# Optional: For advanced error tracking
|
29 |
+
sentry-sdk==1.39.1
|
30 |
|
31 |
+
# Development and Testing
|
32 |
+
pytest==7.4.4
|
33 |
+
black==23.12.1
|
34 |
+
flake8==6.1.0
|