Spaces:
Paused
Paused
Commit
·
8118876
1
Parent(s):
5148efb
Restart: Update dependencies and configuration to resume HuggingFace Space
Browse files- requirements.txt +36 -25
requirements.txt
CHANGED
|
@@ -1,33 +1,44 @@
|
|
| 1 |
-
# Core
|
| 2 |
-
fastapi>=0.100.0,<0.116.0
|
| 3 |
-
uvicorn>=0.20.0,<0.35.0
|
| 4 |
pydantic>=2.0,<3.0
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
# Gradio and UI - stable version
|
| 8 |
gradio>=4.0,<5.0
|
| 9 |
|
| 10 |
-
#
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
|
|
|
| 16 |
|
| 17 |
-
#
|
| 18 |
-
|
| 19 |
-
|
|
|
|
|
|
|
| 20 |
|
| 21 |
-
#
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
|
|
|
| 25 |
|
| 26 |
-
#
|
| 27 |
-
|
| 28 |
-
|
|
|
|
|
|
|
| 29 |
|
| 30 |
-
#
|
| 31 |
-
typing-extensions>=4.0.0
|
| 32 |
loguru>=0.7.0
|
| 33 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Core dependencies
|
|
|
|
|
|
|
| 2 |
pydantic>=2.0,<3.0
|
| 3 |
+
fastapi>=0.100.0
|
| 4 |
+
uvicorn>=0.20.0
|
|
|
|
| 5 |
gradio>=4.0,<5.0
|
| 6 |
|
| 7 |
+
# AI and ML
|
| 8 |
+
huggingface-hub>=0.20.0
|
| 9 |
+
transformers>=4.30.0
|
| 10 |
+
torch>=2.0.0
|
| 11 |
+
datasets>=2.0.0
|
| 12 |
+
numpy>=1.21.0
|
| 13 |
+
pillow>=8.0.0
|
| 14 |
|
| 15 |
+
# Authentication and security
|
| 16 |
+
bcrypt>=4.0.0
|
| 17 |
+
python-multipart>=0.0.5
|
| 18 |
+
python-jose>=3.3.0
|
| 19 |
+
passlib>=1.7.4
|
| 20 |
|
| 21 |
+
# Async and HTTP
|
| 22 |
+
aiohttp>=3.8.0
|
| 23 |
+
aiofiles>=22.0.0
|
| 24 |
+
httpx>=0.24.0
|
| 25 |
+
websockets>=10.0
|
| 26 |
|
| 27 |
+
# Data processing
|
| 28 |
+
pandas>=1.5.0
|
| 29 |
+
pyyaml>=6.0.0
|
| 30 |
+
requests>=2.28.0
|
| 31 |
+
beautifulsoup4>=4.11.0
|
| 32 |
|
| 33 |
+
# Logging and utilities
|
|
|
|
| 34 |
loguru>=0.7.0
|
| 35 |
+
python-dotenv>=1.0.0
|
| 36 |
+
tenacity>=8.0.0
|
| 37 |
+
colorama>=0.4.0
|
| 38 |
+
|
| 39 |
+
# Cloudflare (optional)
|
| 40 |
+
cloudflare>=2.0.0
|
| 41 |
+
cryptography>=40.0.0
|
| 42 |
+
|
| 43 |
+
# Additional utilities
|
| 44 |
+
setuptools>=60.0.0
|