omgy commited on
Commit
1c36d0e
·
verified ·
1 Parent(s): db4df4e

Create requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +42 -0
requirements.txt ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # CareFlow Nexus - Pharmacy Agent Dependencies
2
+ # Python 3.11+
3
+
4
+ # FastAPI framework
5
+ fastapi==0.109.0
6
+ uvicorn[standard]==0.27.0
7
+ python-multipart==0.0.6
8
+
9
+ # Pydantic for data validation
10
+ pydantic==2.5.3
11
+ pydantic-settings==2.1.0
12
+
13
+ # CORS and middleware
14
+ python-jose[cryptography]==3.3.0
15
+ passlib[bcrypt]==1.7.4
16
+
17
+ # Async support
18
+ aiofiles==23.2.1
19
+ httpx==0.26.0
20
+
21
+ # Environment variables
22
+ python-dotenv==1.0.0
23
+
24
+ # Date and time
25
+ python-dateutil==2.8.2
26
+
27
+ # AI/ML capabilities
28
+ google-generativeai==0.3.2
29
+
30
+ # Optional: Other AI providers (uncomment if needed)
31
+ # openai==1.10.0
32
+ # anthropic==0.8.1
33
+ # langchain==0.1.0
34
+
35
+ # Optional: Database support (uncomment if needed)
36
+ # sqlalchemy==2.0.25
37
+ # psycopg2-binary==2.9.9
38
+ # redis==5.0.1
39
+
40
+ # Optional: Monitoring and logging
41
+ # prometheus-client==0.19.0
42
+ # structlog==24.1.0