Update requirements.txt
Browse files- requirements.txt +24 -10
requirements.txt
CHANGED
|
@@ -1,15 +1,29 @@
|
|
| 1 |
-
|
| 2 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
python-dotenv
|
| 4 |
-
pydantic
|
| 5 |
-
|
| 6 |
Pillow
|
| 7 |
-
|
|
|
|
| 8 |
pytest
|
| 9 |
httpx
|
| 10 |
-
gradio
|
| 11 |
-
huggingface_hub
|
| 12 |
requests
|
| 13 |
-
google-genai
|
| 14 |
-
pydantic-settings
|
| 15 |
-
Pillow
|
|
|
|
| 1 |
+
# Web framework
|
| 2 |
+
fastapi>=0.95.0
|
| 3 |
+
|
| 4 |
+
# ASGI server (no [standard] extras to avoid dependency bloat/conflicts)
|
| 5 |
+
uvicorn==0.18.3
|
| 6 |
+
|
| 7 |
+
# UI
|
| 8 |
+
gradio>=5.42.0
|
| 9 |
+
|
| 10 |
+
# Hugging Face Hub (modern API)
|
| 11 |
+
huggingface_hub>=1.0.0
|
| 12 |
+
|
| 13 |
+
# Google generative packages (only keep if you need them)
|
| 14 |
+
google-generativeai>=0.8.4
|
| 15 |
+
google-genai>=1.49.0
|
| 16 |
+
|
| 17 |
+
# Ensure a websockets version compatible with google-genai and modern gradio-client
|
| 18 |
+
websockets>=13.0,<15.1
|
| 19 |
+
|
| 20 |
+
# App utilities
|
| 21 |
python-dotenv
|
| 22 |
+
pydantic>=2.0,<3.0
|
| 23 |
+
pydantic-settings>=2.10.1
|
| 24 |
Pillow
|
| 25 |
+
|
| 26 |
+
# Testing / HTTP
|
| 27 |
pytest
|
| 28 |
httpx
|
|
|
|
|
|
|
| 29 |
requests
|
|
|
|
|
|
|
|
|