Ali2206 commited on
Commit
1917e66
·
verified ·
1 Parent(s): f18c2fd

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +25 -23
requirements.txt CHANGED
@@ -1,23 +1,25 @@
1
- gradio
2
- tooluniverse
3
- transformers
4
- sentence-transformers
5
- torch
6
- vllm
7
- accelerate
8
- scipy
9
- huggingface_hub
10
- pypdfium2
11
- pytesseract
12
- pdfplumber
13
- python-docx
14
- pandas
15
- openpyxl
16
- xlrd
17
- tabulate
18
- psutil
19
- diskcache
20
- Pillow
21
- polars
22
- cachetools
23
- aiofiles
 
 
 
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