eggman-poff commited on
Commit
f36d3b3
·
verified ·
1 Parent(s): 8217def

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +32 -7
requirements.txt CHANGED
@@ -1,7 +1,32 @@
1
- huggingface-hub==0.25.2
2
- diffusers==0.27.0
3
- gradio==4.27.0
4
- torch
5
- transformers
6
- accelerate
7
- imageio[ffmpeg]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Core dependencies
2
+ pydantic==2.10.6
3
+
4
+ # Gradio web/app interface (>=5.22.0 is good for Blocks and newer APIs)
5
+ gradio>=5.22.0
6
+ gradio-client>=1.8.0
7
+
8
+ # Machine learning libraries
9
+ torch>=2.7.1
10
+ diffusers==0.33.1
11
+ transformers[torch]>=4.29.0
12
+ accelerate>=0.19.0
13
+
14
+ # Hugging Face model hub
15
+ huggingface-hub==0.32.4
16
+
17
+ # Video/image processing
18
+ imageio>=2.37.0
19
+ imageio-ffmpeg>=0.5.0
20
+
21
+ # File format support
22
+ safetensors>=0.5.3
23
+
24
+ # Audio (for Python 3.13+)
25
+ audioop-lts; python_version >= "3.13"
26
+
27
+ # WAN (WanImageToVideoPipeline) extra
28
+ # If your code uses torchvision (for cropping etc):
29
+ torchvision>=0.16.0
30
+
31
+ # PIL is usually bundled with Gradio, but if you get PIL errors:
32
+ Pillow