srivatsavdamaraju commited on
Commit
0e41979
·
verified ·
1 Parent(s): 2e3c703

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +26 -24
requirements.txt CHANGED
@@ -1,36 +1,38 @@
1
- # Core web framework
2
- gradio>=4.0.0
 
3
 
4
- # Data manipulation and analysis
5
- pandas>=1.5.0
6
- numpy>=1.21.0
7
 
8
  # Data visualization
9
- matplotlib>=3.5.0
10
- seaborn>=0.11.0
11
 
12
  # AI and LLM integration
13
- pandasai>=2.0.0
14
- langchain-groq>=0.1.0
15
- langchain>=0.1.0
16
- langchain-core>=0.1.0
17
 
18
- # Additional dependencies that might be needed by pandasai
19
- openai>=1.0.0
20
- plotly>=5.0.0
21
- kaleido>=0.2.1
22
 
23
- # Optional but recommended for better performance
24
- scikit-learn>=1.0.0
25
- scipy>=1.7.0
26
 
27
- # For handling different file formats (if needed)
28
- openpyxl>=3.0.0
29
- xlrd>=2.0.0
30
 
31
  # Environment and configuration
32
- python-dotenv>=0.19.0
33
 
34
  # Utility libraries
35
- requests>=2.25.0
36
- Pillow>=8.0.0
 
 
 
 
 
1
+ # Core dependencies with compatible versions
2
+ numpy==1.24.3
3
+ pandas==2.0.3
4
 
5
+ # Core web framework
6
+ gradio==4.16.0
 
7
 
8
  # Data visualization
9
+ matplotlib==3.7.2
10
+ seaborn==0.12.2
11
 
12
  # AI and LLM integration
13
+ pandasai==1.5.17
14
+ langchain-groq==0.1.5
15
+ langchain==0.1.20
16
+ langchain-core==0.1.52
17
 
18
+ # Additional dependencies
19
+ openai==1.12.0
20
+ plotly==5.17.0
 
21
 
22
+ # Optional but recommended
23
+ scikit-learn==1.3.0
24
+ scipy==1.11.1
25
 
26
+ # For handling different file formats
27
+ openpyxl==3.1.2
 
28
 
29
  # Environment and configuration
30
+ python-dotenv==1.0.0
31
 
32
  # Utility libraries
33
+ requests==2.31.0
34
+ Pillow==10.0.0
35
+
36
+ # Additional dependencies that might be needed
37
+ typing-extensions==4.7.1
38
+ pydantic==1.10.12