jithenderchoudary commited on
Commit
aeecdac
·
verified ·
1 Parent(s): 8a21dba

Create requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +29 -0
requirements.txt ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # FastAPI and related dependencies
2
+ fastapi==0.111.0
3
+ uvicorn==0.29.0
4
+ gunicorn==22.0.0
5
+ jinja2==3.1.4
6
+
7
+ # Pydantic (compatible with FastAPI 0.111.0)
8
+ pydantic==1.10.15
9
+
10
+ # For scheduled Salesforce sync
11
+ apscheduler==3.10.4
12
+
13
+ # Keeping simple-salesforce for Salesforce sync
14
+ simple-salesforce==1.12.6
15
+
16
+ # For retry logic in Salesforce sync
17
+ tenacity==8.5.0
18
+
19
+ # For loading .env file
20
+ python-dotenv==1.0.1
21
+
22
+ # Upgrading OpenAI to the latest version (test compatibility, currently unused)
23
+ openai==1.30.0
24
+
25
+ # Hugging Face dependencies (currently unused)
26
+ datasets==2.19.1
27
+ huggingface-hub==0.23.0
28
+ hf-transfer==0.1.6
29
+ protobuf==3.20.3