Update requirements.txt
Browse files- requirements.txt +25 -23
requirements.txt
CHANGED
@@ -1,23 +1,25 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
diskcache
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
|
|
|
|
|
1 |
+
# core UI / runtime
|
2 |
+
gradio>=4.0.0
|
3 |
+
tooluniverse
|
4 |
+
torch>=2.2.0 # or the CUDA‑matched wheel for your GPU
|
5 |
+
vllm>=0.4.2
|
6 |
+
transformers>=4.40.0
|
7 |
+
sentence-transformers>=2.6.0
|
8 |
+
accelerate>=0.28.0
|
9 |
+
|
10 |
+
# fast PDF + tabular ingestion
|
11 |
+
PyMuPDF>=1.24.4 # import name: fitz (C‑accelerated PDF parser)
|
12 |
+
pyarrow[mmap]>=16.1.0 # zero‑copy CSV/XLSX streaming
|
13 |
+
tqdm>=4.66.0 # progress bars
|
14 |
+
|
15 |
+
# data & utilities
|
16 |
+
pandas>=2.2.0
|
17 |
+
openpyxl>=3.1.2 # only for .xlsx fallback
|
18 |
+
xlrd>=2.0.1 # only for legacy .xls
|
19 |
+
diskcache>=5.6.3
|
20 |
+
psutil>=5.9.8
|
21 |
+
cachetools>=5.3.3
|
22 |
+
|
23 |
+
# optional: GPU / system monitoring in Hugging Face Spaces
|
24 |
+
scipy
|
25 |
+
huggingface_hub
|