Spaces:
Runtime error
Runtime error
Update requirements.txt
Browse files- requirements.txt +15 -6
requirements.txt
CHANGED
|
@@ -1,6 +1,15 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Core API/Server
|
| 2 |
+
fastapi>=0.104.0
|
| 3 |
+
uvicorn>=0.24.0
|
| 4 |
+
pydantic>=2.0.0
|
| 5 |
+
|
| 6 |
+
# LLM Client
|
| 7 |
+
openai>=1.0.0
|
| 8 |
+
|
| 9 |
+
# Data science
|
| 10 |
+
numpy>=1.20.0
|
| 11 |
+
pandas>=1.3.0
|
| 12 |
+
|
| 13 |
+
# Development (optional, can be removed for production)
|
| 14 |
+
pytest>=7.0.0
|
| 15 |
+
pytest-asyncio>=0.23.0
|