Sayed223 commited on
Commit
0515018
·
verified ·
1 Parent(s): f1dacad

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +15 -6
requirements.txt CHANGED
@@ -1,6 +1,15 @@
1
- fastapi==0.111.0
2
- uvicorn[standard]==0.29.0
3
- pydantic==2.7.1
4
- pyyaml==6.0.1
5
- openai==1.30.1
6
- httpx==0.27.0
 
 
 
 
 
 
 
 
 
 
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