Update requirements.txt
Browse files- requirements.txt +15 -6
requirements.txt
CHANGED
@@ -1,6 +1,15 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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)
|