RishiRP commited on
Commit
c5301d7
·
verified ·
1 Parent(s): 891ca6a

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +16 -18
requirements.txt CHANGED
@@ -1,18 +1,16 @@
1
- - gradio==4.44.0
2
- - gradio_client==0.17.0
3
- - # ... (other stuff)
4
- +# --- UI stack (pin these) ---
5
- +gradio==4.44.0
6
- +# gradio-client 1.x is pulled automatically by gradio 4.44.0; don't pin an old one
7
- +# Ensure the modern asyncio package path exists:
8
- +websockets>=14,<16
9
- +
10
- +# --- If you actually need these, keep/pin them; otherwise remove to speed up builds ---
11
- +fastapi==0.115.0
12
- +uvicorn==0.30.6
13
- +pydantic<3
14
- +
15
- +# --- Your model stack (only if used) ---
16
- +# transformers==4.44.2
17
- +# accelerate>=0.34.0
18
- +# bitsandbytes==0.43.1 # Only if you really need bnb; not for CPU-only ZeroGPU runs
 
1
+ # --- Core UI ---
2
+ gradio==4.44.0
3
+ # gradio-client 1.x comes with gradio 4.44.0; don't pin an older client
4
+
5
+ # Provide the module path that gradio-client expects:
6
+ websockets>=14,<16
7
+
8
+ # --- Optional (only keep if you actually use them; otherwise remove for faster builds) ---
9
+ fastapi==0.115.0
10
+ uvicorn==0.30.6
11
+ pydantic<3
12
+
13
+ # --- Model stack (uncomment only if you truly need them) ---
14
+ # transformers==4.44.2
15
+ # accelerate>=0.34.0
16
+ # bitsandbytes==0.43.1