Spaces:
Running
Running
Update requirements.txt
Browse files- requirements.txt +10 -4
requirements.txt
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
# Core ML
|
| 2 |
torch==2.1.0
|
| 3 |
torchvision==0.16.0
|
| 4 |
diffusers==0.24.0
|
|
@@ -8,7 +8,7 @@ accelerate==0.24.0
|
|
| 8 |
# Image processing
|
| 9 |
pillow==10.1.0
|
| 10 |
|
| 11 |
-
# API
|
| 12 |
fastapi==0.104.1
|
| 13 |
uvicorn==0.24.0
|
| 14 |
python-multipart==0.0.6
|
|
@@ -19,5 +19,11 @@ requests==2.31.0
|
|
| 19 |
psutil==5.9.6
|
| 20 |
huggingface-hub==0.19.4
|
| 21 |
|
| 22 |
-
#
|
| 23 |
-
gradio==3.50.2
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Core ML - Pinned for compatibility
|
| 2 |
torch==2.1.0
|
| 3 |
torchvision==0.16.0
|
| 4 |
diffusers==0.24.0
|
|
|
|
| 8 |
# Image processing
|
| 9 |
pillow==10.1.0
|
| 10 |
|
| 11 |
+
# API Framework
|
| 12 |
fastapi==0.104.1
|
| 13 |
uvicorn==0.24.0
|
| 14 |
python-multipart==0.0.6
|
|
|
|
| 19 |
psutil==5.9.6
|
| 20 |
huggingface-hub==0.19.4
|
| 21 |
|
| 22 |
+
# Web Interface (optional - comment out if you don't need UI)
|
| 23 |
+
gradio==3.50.2
|
| 24 |
+
|
| 25 |
+
# Additional helpful packages
|
| 26 |
+
tqdm>=4.65.0
|
| 27 |
+
filelock>=3.12.0
|
| 28 |
+
safetensors>=0.3.0
|
| 29 |
+
regex>=2023.6.3
|