Spaces:
Build error
Build error
Update requirements.txt
Browse files- requirements.txt +35 -34
requirements.txt
CHANGED
|
@@ -1,35 +1,36 @@
|
|
| 1 |
-
# Web Framework
|
| 2 |
-
fastapi==0.115.0
|
| 3 |
-
uvicorn==0.24.0
|
| 4 |
-
jinja2==3.1.2
|
| 5 |
-
python-multipart==0.0.6
|
| 6 |
-
pydantic==2.4.2
|
| 7 |
-
python-dotenv==1.0.0
|
| 8 |
-
itsdangerous==2.1.2
|
| 9 |
-
aiofiles==23.2.1
|
| 10 |
-
requests==2.31.0
|
| 11 |
-
# starlette is included as a dependency of FastAPI
|
| 12 |
-
|
| 13 |
-
# Database
|
| 14 |
-
boto3==1.28.48
|
| 15 |
-
redis==5.0.0
|
| 16 |
-
|
| 17 |
-
# AI/ML
|
| 18 |
-
openai==1.0.0
|
| 19 |
-
|
| 20 |
-
# Authentication
|
| 21 |
-
python-jose[cryptography]>=3.3.0
|
| 22 |
-
passlib[bcrypt]>=1.7.4
|
| 23 |
-
PyJWT==2.8.0
|
| 24 |
-
|
| 25 |
-
# Utilities
|
| 26 |
-
pyyaml>=6.0.0
|
| 27 |
-
psutil==5.9.5
|
| 28 |
-
|
| 29 |
-
# Testing
|
| 30 |
-
pytest>=7.0.0
|
| 31 |
-
pytest-asyncio>=0.18.0
|
| 32 |
-
|
| 33 |
-
# Additional dependencies
|
| 34 |
-
pandas==2.1.0
|
|
|
|
| 35 |
huggingface-hub==0.17.2
|
|
|
|
| 1 |
+
# Web Framework
|
| 2 |
+
fastapi==0.115.0
|
| 3 |
+
uvicorn==0.24.0
|
| 4 |
+
jinja2==3.1.2
|
| 5 |
+
python-multipart==0.0.6
|
| 6 |
+
pydantic==2.4.2
|
| 7 |
+
python-dotenv==1.0.0
|
| 8 |
+
itsdangerous==2.1.2
|
| 9 |
+
aiofiles==23.2.1
|
| 10 |
+
requests==2.31.0
|
| 11 |
+
# starlette is included as a dependency of FastAPI
|
| 12 |
+
|
| 13 |
+
# Database
|
| 14 |
+
boto3==1.28.48
|
| 15 |
+
redis==5.0.0
|
| 16 |
+
|
| 17 |
+
# AI/ML
|
| 18 |
+
openai==1.0.0
|
| 19 |
+
|
| 20 |
+
# Authentication
|
| 21 |
+
python-jose[cryptography]>=3.3.0
|
| 22 |
+
passlib[bcrypt]>=1.7.4
|
| 23 |
+
PyJWT==2.8.0
|
| 24 |
+
|
| 25 |
+
# Utilities
|
| 26 |
+
pyyaml>=6.0.0
|
| 27 |
+
psutil==5.9.5
|
| 28 |
+
|
| 29 |
+
# Testing
|
| 30 |
+
pytest>=7.0.0
|
| 31 |
+
pytest-asyncio>=0.18.0
|
| 32 |
+
|
| 33 |
+
# Additional dependencies
|
| 34 |
+
pandas==2.1.0
|
| 35 |
+
numpy==1.24.4
|
| 36 |
huggingface-hub==0.17.2
|