specimba commited on
Commit
7edb240
·
verified ·
1 Parent(s): c2c9990

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +19 -8
requirements.txt CHANGED
@@ -1,11 +1,22 @@
1
- # NEXUS Visual Weaver - HF Space Dependencies
2
- # DO NOT pin gradio version - HF Spaces SDK manages it (currently 6.18.0)
3
- # Pinning gradio conflicts with the SDK's own gradio install step
4
- huggingface_hub>=0.30.0
5
- accelerate>=1.12.0
6
- transformers>=4.57.1
7
  Pillow>=11.1.0
8
- git+https://github.com/huggingface/diffusers.git
 
 
 
 
 
9
  peft>=0.13.0
10
  safetensors
11
- modal
 
 
 
 
 
 
 
 
 
 
 
1
+ # NEXUS Visual Weaver - Clean HF Space Dependencies
2
+ torch==2.11.0
 
 
 
 
3
  Pillow>=11.1.0
4
+
5
+ # HF Core (pinned for stability)
6
+ huggingface_hub>=0.30.0
7
+ diffusers==0.30.3
8
+ transformers>=4.40
9
+ accelerate>=0.30
10
  peft>=0.13.0
11
  safetensors
12
+
13
+ # Gradio (stable version for Spaces + MCP/OAuth)
14
+ gradio[oauth,mcp]==6.12.0
15
+
16
+ # Runtime
17
+ uvicorn>=0.14.0
18
+ websockets>=10.4
19
+ spaces==0.50.4
20
+
21
+ # Note: Do NOT install 'modal' inside the Space container.
22
+ # Modal functions are called from outside via the Modal client.