mgbam commited on
Commit
3b1eb8c
·
verified ·
1 Parent(s): c9ba3ae

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +11 -20
requirements.txt CHANGED
@@ -1,24 +1,15 @@
1
- # requirements.txt
2
- # Dependencies for the AI Data Explorer (Phoenix UI) application
3
- # -----------------------------------------------------------------
4
- # To install all dependencies, run the following command in your terminal:
5
- # pip install -r requirements.txt
6
- # -----------------------------------------------------------------
7
 
8
- # Core Application Framework
9
- gradio==4.29.0 # The main framework for building the web UI
10
 
11
- # Data Handling and Numerical Operations
12
- pandas==2.2.2 # Essential for data manipulation and analysis (DataFrames)
13
- numpy==1.26.4 # Fundamental package for numerical computing in Python
14
 
15
- # Visualization Engine
16
- plotly==5.22.0 # Powers all the interactive plots and charts
17
- kaleido==0.2.1 # Used by Plotly for static image export capabilities (optional but recommended)
18
 
19
- # AI and API Integration
20
- google-generativeai==0.5.4 # The official Google client library for the Gemini API
21
-
22
- # Environment Variable Management
23
- python-dotenv==1.0.1 # For loading environment variables from a .env file (e.g., your API key)
24
- openpyxl
 
1
+ # Core Data & Computation
2
+ pandas
3
+ numpy
 
 
 
4
 
5
+ # Visualization
6
+ plotly
7
 
8
+ # Web Application Framework
9
+ gradio
 
10
 
11
+ # AI & API Integration
12
+ google-generativeai
 
13
 
14
+ # Optional Pandas Dependencies for specific features
15
+ tabulate # Required for .to_markdown() functionality