Spaces:
Sleeping
Sleeping
Update requirements.txt
Browse files- requirements.txt +26 -24
requirements.txt
CHANGED
@@ -1,36 +1,38 @@
|
|
1 |
-
# Core
|
2 |
-
|
|
|
3 |
|
4 |
-
#
|
5 |
-
|
6 |
-
numpy>=1.21.0
|
7 |
|
8 |
# Data visualization
|
9 |
-
matplotlib
|
10 |
-
seaborn
|
11 |
|
12 |
# AI and LLM integration
|
13 |
-
pandasai
|
14 |
-
langchain-groq
|
15 |
-
langchain
|
16 |
-
langchain-core
|
17 |
|
18 |
-
# Additional dependencies
|
19 |
-
openai
|
20 |
-
plotly
|
21 |
-
kaleido>=0.2.1
|
22 |
|
23 |
-
# Optional but recommended
|
24 |
-
scikit-learn
|
25 |
-
scipy
|
26 |
|
27 |
-
# For handling different file formats
|
28 |
-
openpyxl
|
29 |
-
xlrd>=2.0.0
|
30 |
|
31 |
# Environment and configuration
|
32 |
-
python-dotenv
|
33 |
|
34 |
# Utility libraries
|
35 |
-
requests
|
36 |
-
Pillow
|
|
|
|
|
|
|
|
|
|
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
|