Spaces:
Runtime error
Runtime error
Update requirements.txt
Browse files- requirements.txt +26 -5
requirements.txt
CHANGED
|
@@ -1,14 +1,35 @@
|
|
|
|
|
| 1 |
opencv-python==4.8.1.78
|
| 2 |
mediapipe==0.10.7
|
| 3 |
-
openai==1.3.7
|
| 4 |
numpy==1.24.3
|
| 5 |
-
pyttsx3==2.90
|
| 6 |
-
streamlit==1.28.1
|
| 7 |
-
python-dotenv==1.0.0
|
| 8 |
Pillow==10.0.1
|
| 9 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
streamlit-option-menu==0.3.6
|
| 11 |
streamlit-lottie==0.0.5
|
| 12 |
streamlit-aggrid==0.3.4.post3
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
reportlab==4.0.7
|
| 14 |
fpdf2==2.7.6
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Core Dependencies
|
| 2 |
opencv-python==4.8.1.78
|
| 3 |
mediapipe==0.10.7
|
|
|
|
| 4 |
numpy==1.24.3
|
|
|
|
|
|
|
|
|
|
| 5 |
Pillow==10.0.1
|
| 6 |
+
|
| 7 |
+
# AI/ML Libraries
|
| 8 |
+
openai==1.3.7
|
| 9 |
+
google-generativeai==0.3.2
|
| 10 |
+
protobuf==3.20.3
|
| 11 |
+
|
| 12 |
+
# Web Framework
|
| 13 |
+
streamlit==1.28.1
|
| 14 |
streamlit-option-menu==0.3.6
|
| 15 |
streamlit-lottie==0.0.5
|
| 16 |
streamlit-aggrid==0.3.4.post3
|
| 17 |
+
|
| 18 |
+
# Visualization
|
| 19 |
+
plotly==5.17.0
|
| 20 |
+
|
| 21 |
+
# Export and Reporting
|
| 22 |
reportlab==4.0.7
|
| 23 |
fpdf2==2.7.6
|
| 24 |
+
|
| 25 |
+
# Configuration
|
| 26 |
+
python-dotenv==1.0.0
|
| 27 |
+
|
| 28 |
+
# Optional: Text-to-Speech
|
| 29 |
+
pyttsx3==2.90
|
| 30 |
+
|
| 31 |
+
# Additional dependencies for Google Generative AI
|
| 32 |
+
google-auth==2.23.4
|
| 33 |
+
google-auth-oauthlib==1.1.0
|
| 34 |
+
google-auth-httplib2==0.1.1
|
| 35 |
+
requests==2.31.0
|