Prathamesh1420 commited on
Commit
0ad1bfc
·
verified ·
1 Parent(s): abcd3a0

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +15 -6
requirements.txt CHANGED
@@ -1,6 +1,15 @@
1
- Flask==3.0.3
2
- Flask-SocketIO==5.3.0
3
- google-generativeai==0.7.0
4
- python-dotenv==1.0.1
5
- eventlet==0.36.1
6
- gunicorn==22.0.0
 
 
 
 
 
 
 
 
 
 
1
+ # --- core web app ---
2
+ flask>=3.0
3
+ gunicorn>=22.0 # production WSGI server recommended by Render
4
+
5
+ # --- computer‑vision utilities ---
6
+ opencv-python-headless>=4.10.0.0 # OpenCV without GUI libs
7
+
8
+ # --- Gemini / LangChain ---
9
+ langchain-core>=0.2.0
10
+ langchain-google-genai>=0.0.12 # wrapper for Google Generative AI
11
+ google-generativeai>=0.5.3 # underlying Gemini client SDK
12
+
13
+ # --- other runtime helpers ---
14
+ requests>=2.32
15
+ python-dotenv>=1.0 # convenient for local .env testing (optional)