MLDeveloper commited on
Commit
f716166
·
verified ·
1 Parent(s): ed6a4a7

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +31 -12
requirements.txt CHANGED
@@ -1,21 +1,40 @@
 
 
 
 
 
 
 
 
1
  fastapi==0.104.1
2
  uvicorn==0.24.0
 
 
 
 
 
 
3
  pydantic==2.5.0
4
  pydantic-settings==2.1.0
5
- python-dotenv==1.0.0
6
- streamlit==1.28.1
7
- requests==2.31.0
 
8
  langchain==0.1.0
9
- langchain-openai==0.0.5
10
  langchain-core==0.1.0
11
- openai==1.3.0
 
 
 
 
12
  anthropic==0.7.0
 
 
 
 
13
  sqlalchemy==2.0.23
14
- streamlit
15
- openai==1.3.9
16
- python-dotenv
17
- httpx==0.24.1
18
- fastapi
19
- uvicorn
20
- requests
21
 
 
 
 
 
 
1
+ # ===============================
2
+ # Frontend
3
+ # ===============================
4
+ streamlit==1.28.1
5
+
6
+ # ===============================
7
+ # Backend / API
8
+ # ===============================
9
  fastapi==0.104.1
10
  uvicorn==0.24.0
11
+ requests==2.31.0
12
+
13
+ # ===============================
14
+ # Configuration
15
+ # ===============================
16
+ python-dotenv==1.0.0
17
  pydantic==2.5.0
18
  pydantic-settings==2.1.0
19
+
20
+ # ===============================
21
+ # Agent / LLM Stack
22
+ # ===============================
23
  langchain==0.1.0
 
24
  langchain-core==0.1.0
25
+ langchain-openai==0.0.5
26
+
27
+ # ===============================
28
+ # LLM Providers
29
+ # ===============================
30
  anthropic==0.7.0
31
+
32
+ # ===============================
33
+ # Database
34
+ # ===============================
35
  sqlalchemy==2.0.23
 
 
 
 
 
 
 
36
 
37
+ # ===============================
38
+ # Networking (IMPORTANT)
39
+ # ===============================
40
+ httpx==0.24.1