Spaces:
Running
Running
Update requirements.txt
Browse files- requirements.txt +20 -4
requirements.txt
CHANGED
@@ -1,4 +1,20 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# ----- Web Framework -----
|
2 |
+
fastapi==0.111.0
|
3 |
+
uvicorn[standard]==0.29.0
|
4 |
+
|
5 |
+
# ----- Config & Validation -----
|
6 |
+
commentjson==0.9.0
|
7 |
+
pydantic==2.7.1
|
8 |
+
|
9 |
+
# ----- HTTP & Retry -----
|
10 |
+
httpx==0.27.0
|
11 |
+
tenacity==8.3.0
|
12 |
+
|
13 |
+
# ----- Security -----
|
14 |
+
bcrypt==4.1.3
|
15 |
+
|
16 |
+
# ----- Utility / Others -----
|
17 |
+
python-multipart==0.0.9 # (FastAPI form support; opsiyonel ama genelde lazım)
|
18 |
+
|
19 |
+
# Eğer Spark veya başka LLM client kütüphanesi kullanıyorsan,
|
20 |
+
# llm_connector.py’deki import’a göre buraya ekle.
|