johnisafridge commited on
Commit
dbc0cd5
·
verified ·
1 Parent(s): a517f39

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +14 -10
requirements.txt CHANGED
@@ -1,13 +1,17 @@
 
1
  numpy==1.24.4
2
- Pillow==10.3.0
3
- Requests==2.31.0
4
- torch
5
- torchvision
6
- transformers
7
  accelerate==0.30.0
8
  qwen-vl-utils
9
- gradio = "^5.0.0" # or the latest 5.x you’re comfortable with
10
- gradio-client = "^1.5.2" # or latest 1.5.x ( the bugfix that handles booleans
11
- transformers>=4.44
12
- torch # (HF will install a CPU build for CPU Spaces)
13
- Pillow
 
 
 
 
1
+ # Core deps
2
  numpy==1.24.4
3
+ pillow==10.3.0
4
+ requests==2.31.0
5
+
6
+ # HF / LLM stack
7
+ transformers>=4.44
8
  accelerate==0.30.0
9
  qwen-vl-utils
10
+
11
+ # Gradio stack (pin both to compatible versions)
12
+ gradio>=5,<6
13
+ gradio-client>=1.5.2,<2
14
+
15
+ # PyTorch (leave unpinned here; see notes below)
16
+ torch
17
+ torchvision