jithenderchoudary commited on
Commit
f80272f
·
verified ·
1 Parent(s): 98f6943

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +26 -13
requirements.txt CHANGED
@@ -1,16 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  simple-salesforce==1.12.6
 
 
 
 
 
 
 
 
2
  openai==1.30.0
3
- datasets
4
- huggingface-hub>=0.19
5
- hf-transfer>=0.1.4
6
- protobuf<4
7
- fastapi
8
- uvicorn[standard]
9
- gunicorn
10
- jinja2
11
- pydantic>=1.8,<2.0
12
- apscheduler
13
- flask
14
- apscheduler
15
- python-dotenv
16
 
 
 
 
 
 
 
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