jzou19950715 commited on
Commit
ee4c228
·
verified ·
1 Parent(s): 707e5d0

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +18 -10
requirements.txt CHANGED
@@ -1,22 +1,30 @@
1
- # Core dependencies
2
  gradio>=4.0.0
3
  pandas>=2.0.0
4
  numpy>=1.24.0
 
 
5
  bokeh>=3.3.0
 
 
6
 
7
- # LLM Integration
8
  litellm>=1.0.0
9
 
10
  # Data handling
11
  openpyxl>=3.1.0 # For Excel file support
 
 
12
 
13
- # Visualization
14
- matplotlib>=3.7.0 # For basic plotting capabilities
15
- seaborn>=0.12.0 # For enhanced visualizations
16
 
17
- # Optional but recommended
18
- scipy>=1.10.0 # For statistical functions
19
- scikit-learn>=1.2.0 # For machine learning capabilities
 
20
 
21
- # Development tools
22
- python-dotenv>=1.0.0 # For environment variable management
 
 
1
+ # Core packages
2
  gradio>=4.0.0
3
  pandas>=2.0.0
4
  numpy>=1.24.0
5
+
6
+ # Visualization
7
  bokeh>=3.3.0
8
+ matplotlib>=3.7.0
9
+ seaborn>=0.12.0
10
 
11
+ # AI/LLM integration
12
  litellm>=1.0.0
13
 
14
  # Data handling
15
  openpyxl>=3.1.0 # For Excel file support
16
+ xlrd>=2.0.1 # For older Excel files
17
+ python-dateutil>=2.8.2
18
 
19
+ # Statistical analysis
20
+ scipy>=1.10.0
21
+ scikit-learn>=1.2.0
22
 
23
+ # Development and utilities
24
+ python-dotenv>=1.0.0
25
+ Jinja2>=3.1.2
26
+ MarkupSafe>=2.1.0
27
 
28
+ # Optional but recommended for better performance
29
+ pyarrow>=14.0.1 # For faster pandas operations
30
+ numexpr>=2.8.7 # For faster numerical computations