srivatsavdamaraju commited on
Commit
0aa2190
·
verified ·
1 Parent(s): 6d8f34f

Create requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +36 -0
requirements.txt ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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