Spaces:
Running
Running
Update requirements.txt
Browse filesTrying to see if pip can resolve these on it's own
- requirements.txt +8 -7
requirements.txt
CHANGED
|
@@ -1,18 +1,19 @@
|
|
| 1 |
# Core dependencies
|
| 2 |
-
gradio # Let pip install the latest
|
| 3 |
-
fastapi
|
| 4 |
uvicorn[standard] # Let pip choose, but keep [standard]
|
| 5 |
-
pydantic
|
| 6 |
-
httpx
|
| 7 |
-
python-multipart
|
| 8 |
|
| 9 |
# ML stack
|
| 10 |
-
torch
|
| 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
|
| 18 |
huggingface_hub # Let pip install the latest
|
|
|
|
| 1 |
# Core dependencies
|
| 2 |
+
gradio # Let pip install the latest
|
| 3 |
+
fastapi # Use the latest stable
|
| 4 |
uvicorn[standard] # Let pip choose, but keep [standard]
|
| 5 |
+
pydantic # Let pip choose the newest, but after 2.0
|
| 6 |
+
httpx # Use the latest stable
|
| 7 |
+
python-multipart # Use the latest stable
|
| 8 |
|
| 9 |
# ML stack
|
| 10 |
+
torch # 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 |
+
accelerate # It argues that this is codeded and testedd lol.
|
| 16 |
|
| 17 |
# Utilities
|
| 18 |
+
requests # Use the latest stable.
|
| 19 |
huggingface_hub # Let pip install the latest
|