Spaces:
Running
Running
Update requirements.txt
Browse files- requirements.txt +21 -1
requirements.txt
CHANGED
|
@@ -1 +1,21 @@
|
|
| 1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Sixfinger Backend API Dependencies
|
| 2 |
+
# Hugging Face Spaces Compatible
|
| 3 |
+
|
| 4 |
+
# FastAPI ve ASGI server
|
| 5 |
+
fastapi==0.115.0
|
| 6 |
+
uvicorn[standard]==0.30.6
|
| 7 |
+
pydantic==2.10.0
|
| 8 |
+
pydantic-settings==2.6.0
|
| 9 |
+
|
| 10 |
+
# Groq SDK
|
| 11 |
+
groq==0.11.0
|
| 12 |
+
|
| 13 |
+
# HTTP client
|
| 14 |
+
httpx==0.28.0
|
| 15 |
+
|
| 16 |
+
# Utils
|
| 17 |
+
python-dotenv==1.0.1
|
| 18 |
+
python-multipart==0.0.12
|
| 19 |
+
|
| 20 |
+
# Optional: Better logging
|
| 21 |
+
colorlog==6.8.2
|