NitinBot001 commited on
Commit
592ac37
·
verified ·
1 Parent(s): 59ef98a

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +27 -4
requirements.txt CHANGED
@@ -1,5 +1,28 @@
1
- Flask
2
- googletrans==4.0.0-rc1
3
- flask-cors
 
 
4
  openai
5
- requests
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Web Framework
2
+ Flask==2.3.3
3
+ flask-cors==4.0.0
4
+
5
+ # AI/ML APIs
6
  openai
7
+
8
+ # Translation
9
+ translate==3.6.1
10
+
11
+ # HTTP Requests (dependency for translate)
12
+ requests==2.31.0
13
+
14
+ # Additional dependencies that might be needed
15
+ Werkzeug==2.3.7
16
+ Jinja2==3.1.2
17
+ MarkupSafe==2.1.3
18
+ itsdangerous==2.1.2
19
+ click==8.1.7
20
+
21
+ # For better language detection (optional but recommended)
22
+ langdetect==1.0.9
23
+
24
+ # For handling different character encodings
25
+ chardet==5.2.0
26
+
27
+ # For JSON handling (usually included with Python)
28
+ certifi==2023.7.22