SmartHeal commited on
Commit
d0d9dd3
·
verified ·
1 Parent(s): bc7b1d8

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +20 -24
requirements.txt CHANGED
@@ -1,44 +1,40 @@
1
- # ---- PyTorch (pick a ZeroGPU-supported set; 2.3.x is NOT allowed) ----
2
- # Option A (recommended today): Torch 2.4 line
3
- torch==2.4.0
4
- torchvision==0.19.0
5
- torchaudio==2.4.0
6
-
7
- # ---- Core Python Packages ----
8
  numpy
9
- pillow>=10.2
10
- opencv-python-headless
11
  matplotlib
12
  requests
13
  tqdm
14
  pypdf
15
 
16
- # ---- Deep Learning / HF ----
17
- # Keep TF on CPU so it doesn't probe CUDA in the main process
18
- tensorflow-cpu==2.15.*
19
- transformers>=4.43,<5
20
- accelerate>=0.30
21
- # bitsandbytes # avoid on ZeroGPU unless you *really* know you need it
22
- tf-keras
23
- huggingface-hub>=0.23
24
  sentence-transformers
25
 
26
- # ---- LangChain & RAG ----
27
- langchain>=0.1.14
 
 
28
  faiss-cpu
29
  pymupdf
30
- langchain-community
31
 
32
- # ---- YOLO Detection ----
33
  ultralytics
34
 
35
- # ---- Gradio UI / Spaces ----
36
  gradio>=4.28.0
37
- spaces>=0.19.4
38
 
39
- # ---- Logging & Utility ----
40
  python-dotenv
41
 
 
42
  # ---------- Databases ----------
43
  mysqlclient
44
  mysql-connector-python
 
1
+ # --- Core Python Packages ---
 
 
 
 
 
 
2
  numpy
3
+ pillow
4
+ opencv-python
5
  matplotlib
6
  requests
7
  tqdm
8
  pypdf
9
 
10
+ # --- Deep Learning (DO NOT pin torch on ZeroGPU) ---
11
+ tensorflow==2.15.1
12
+ transformers>=4.40.0
13
+ accelerate
14
+ safetensors
15
+
16
+ # --- Hugging Face ---
17
+ huggingface-hub
18
  sentence-transformers
19
 
20
+ # --- LangChain & RAG ---
21
+ langchain>=0.1.14,<0.3
22
+ langchain-community>=0.2.0
23
+ langchain-huggingface>=0.0.11
24
  faiss-cpu
25
  pymupdf
 
26
 
27
+ # --- YOLO Detection ---
28
  ultralytics
29
 
30
+ # --- Gradio UI / Spaces ---
31
  gradio>=4.28.0
32
+ spaces
33
 
34
+ # --- Logging & Utility ---
35
  python-dotenv
36
 
37
+
38
  # ---------- Databases ----------
39
  mysqlclient
40
  mysql-connector-python