Spaces:
Configuration error
Configuration error
Update requirements.txt
Browse files- requirements.txt +16 -1
requirements.txt
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
|
|
| 1 |
gradio>=4.0.0
|
| 2 |
pandas>=2.0.0
|
| 3 |
numpy>=1.24.0
|
|
|
|
|
|
|
| 4 |
plotly>=5.18.0
|
| 5 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Core dependencies
|
| 2 |
gradio>=4.0.0
|
| 3 |
pandas>=2.0.0
|
| 4 |
numpy>=1.24.0
|
| 5 |
+
|
| 6 |
+
# Visualization
|
| 7 |
plotly>=5.18.0
|
| 8 |
+
matplotlib>=3.7.0
|
| 9 |
+
seaborn>=0.12.0
|
| 10 |
+
|
| 11 |
+
# AI Integration
|
| 12 |
+
litellm>=1.0.0
|
| 13 |
+
|
| 14 |
+
# Data handling
|
| 15 |
+
openpyxl>=3.1.0 # For Excel files
|
| 16 |
+
python-dateutil>=2.8.2
|
| 17 |
+
|
| 18 |
+
# Optional but recommended
|
| 19 |
+
scikit-learn>=1.2.0 # For machine learning capabilities
|
| 20 |
+
scipy>=1.10.0 # For statistical functions
|