Spaces:
Running
Running
Update requirements.txt
Browse files- requirements.txt +13 -16
requirements.txt
CHANGED
|
@@ -1,21 +1,18 @@
|
|
| 1 |
# Core dependencies
|
| 2 |
-
gradio
|
| 3 |
-
fastapi>=0.
|
| 4 |
-
uvicorn[standard]
|
| 5 |
-
pydantic>=2.0
|
| 6 |
-
httpx>=0.
|
| 7 |
-
python-multipart>=0.0.
|
| 8 |
|
| 9 |
# ML stack
|
| 10 |
-
torch>=2.
|
| 11 |
-
diffusers
|
| 12 |
-
transformers
|
| 13 |
-
safetensors
|
| 14 |
-
xformers
|
| 15 |
|
| 16 |
# Utilities
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
tqdm>=4.65.0
|
| 20 |
-
gdown>=4.7.1
|
| 21 |
-
huggingface-hub>=0.15.0
|
|
|
|
| 1 |
# Core dependencies
|
| 2 |
+
gradio # Let pip install the latest, <=5.16.1
|
| 3 |
+
fastapi>=0.110.0 # Use the latest stable
|
| 4 |
+
uvicorn[standard] # Let pip choose, but keep [standard]
|
| 5 |
+
pydantic>=2.0 # Let pip choose the newest, but after 2.0
|
| 6 |
+
httpx>=0.27.0 # Use the latest stable
|
| 7 |
+
python-multipart>=0.0.9 # Use the latest stable
|
| 8 |
|
| 9 |
# ML stack
|
| 10 |
+
torch>=2.1.0 # Allow for updates, but keep a reasonable minimum
|
| 11 |
+
diffusers # Let pip install the latest
|
| 12 |
+
transformers # Let pip install the latest
|
| 13 |
+
safetensors # Let pip install the latest
|
| 14 |
+
xformers # Let pip resolve; torch manages this
|
| 15 |
|
| 16 |
# Utilities
|
| 17 |
+
requests>=2.31.0 # Use the latest stable.
|
| 18 |
+
huggingface_hub # Let pip install the latest
|
|
|
|
|
|
|
|
|