jzou19950715 commited on
Commit
eeebaa6
·
verified ·
1 Parent(s): 3950cb3

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +19 -16
requirements.txt CHANGED
@@ -1,19 +1,22 @@
1
- gradio==3.41.0
 
2
  pandas>=2.0.0
3
  numpy>=1.24.0
4
- matplotlib==3.7.1
5
- seaborn==0.12.2
6
- plotly>=5.13.0
7
- scipy>=1.10.0
8
- scikit-learn>=1.2.0
9
- statsmodels>=0.14.0
10
- python-dotenv>=1.0.0
11
  litellm>=1.0.0
12
- transformers>=4.35.0
13
- torch>=2.0.0
14
- openpyxl>=3.1.0
15
- pillow>=8.0.0,<11.0.0
16
- aiohttp
17
- requests>=2.0.0
18
- tqdm
19
- ipython>=8.0.0
 
 
 
 
 
 
 
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