Commit ·
bd9c6fc
1
Parent(s): 96becf2
Fixing deployment issues:
Browse files- updating versions and solving version conflicts
- requirements.txt +31 -35
- visualization/requirements.txt +9 -10
requirements.txt
CHANGED
|
@@ -2,50 +2,46 @@
|
|
| 2 |
# Merges dependencies from both ai_messaging_system_v2 and visualization
|
| 3 |
|
| 4 |
# Core Dependencies
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
python-dotenv
|
| 9 |
|
| 10 |
# Data Visualization
|
| 11 |
-
plotly
|
| 12 |
|
| 13 |
# Snowflake Integration
|
| 14 |
-
snowflake-snowpark-python
|
| 15 |
-
snowflake-connector-python
|
| 16 |
-
pyarrow
|
| 17 |
-
cloudpickle
|
| 18 |
-
|
| 19 |
|
| 20 |
# Date/Time Handling
|
| 21 |
-
pytz
|
| 22 |
-
python-dateutil
|
| 23 |
-
tzdata
|
| 24 |
|
| 25 |
# AI/ML APIs
|
| 26 |
-
openai
|
| 27 |
-
google-genai
|
| 28 |
-
anyio
|
| 29 |
-
google-auth
|
| 30 |
-
httpx
|
| 31 |
-
pydantic
|
| 32 |
-
tenacity
|
| 33 |
-
websockets
|
| 34 |
-
distro
|
| 35 |
-
jiter
|
| 36 |
-
sniffio
|
| 37 |
-
|
| 38 |
-
# LangGraph for Agentic Workflow Orchestration
|
| 39 |
-
langgraph>=0.2.0
|
| 40 |
-
langchain-core>=0.3.0
|
| 41 |
|
| 42 |
# HTTP and Crypto Dependencies
|
| 43 |
-
certifi
|
| 44 |
-
requests
|
| 45 |
-
urllib3
|
| 46 |
-
cryptography
|
| 47 |
-
|
| 48 |
-
cffi
|
| 49 |
|
| 50 |
# Utility Libraries
|
| 51 |
-
tqdm
|
|
|
|
| 2 |
# Merges dependencies from both ai_messaging_system_v2 and visualization
|
| 3 |
|
| 4 |
# Core Dependencies
|
| 5 |
+
numpy==1.26.4
|
| 6 |
+
streamlit==1.50.0
|
| 7 |
+
pandas==2.2.0
|
| 8 |
+
python-dotenv==1.0.0
|
| 9 |
|
| 10 |
# Data Visualization
|
| 11 |
+
plotly==6.5.1
|
| 12 |
|
| 13 |
# Snowflake Integration
|
| 14 |
+
snowflake-snowpark-python==1.19.0
|
| 15 |
+
snowflake-connector-python==3.17.3
|
| 16 |
+
pyarrow==21.0.0
|
| 17 |
+
cloudpickle==2.2.1
|
| 18 |
+
PyYAML==6.0.2
|
| 19 |
|
| 20 |
# Date/Time Handling
|
| 21 |
+
pytz==2025.2
|
| 22 |
+
python-dateutil==2.9.0.post0
|
| 23 |
+
tzdata==2025.2
|
| 24 |
|
| 25 |
# AI/ML APIs
|
| 26 |
+
openai==1.99.9
|
| 27 |
+
google-genai==1.24.0
|
| 28 |
+
anyio==4.10.0
|
| 29 |
+
google-auth==2.40.3
|
| 30 |
+
httpx==0.28.1
|
| 31 |
+
pydantic==2.11.7
|
| 32 |
+
tenacity==8.5.0
|
| 33 |
+
websockets==15.0.1
|
| 34 |
+
distro==1.9.0
|
| 35 |
+
jiter==0.10.0
|
| 36 |
+
sniffio==1.3.1
|
|
|
|
|
|
|
|
|
|
|
|
|
| 37 |
|
| 38 |
# HTTP and Crypto Dependencies
|
| 39 |
+
certifi==2025.8.3
|
| 40 |
+
requests==2.32.5
|
| 41 |
+
urllib3==1.26.20
|
| 42 |
+
cryptography==45.0.7
|
| 43 |
+
pyOpenSSL==25.1.0
|
| 44 |
+
cffi==1.17.1
|
| 45 |
|
| 46 |
# Utility Libraries
|
| 47 |
+
tqdm==4.66.4
|
visualization/requirements.txt
CHANGED
|
@@ -1,23 +1,22 @@
|
|
| 1 |
# AI Messaging System - Visualization Tool Requirements
|
| 2 |
|
| 3 |
# Core Dependencies
|
| 4 |
-
streamlit
|
| 5 |
-
pandas
|
| 6 |
-
python-dotenv
|
| 7 |
|
| 8 |
# Data Visualization
|
| 9 |
-
plotly
|
| 10 |
|
| 11 |
# Snowflake Integration
|
| 12 |
-
snowflake-snowpark-python
|
| 13 |
|
| 14 |
# AI/LLM APIs
|
| 15 |
-
openai
|
| 16 |
-
google-
|
| 17 |
|
| 18 |
# Utility Libraries
|
| 19 |
-
pathlib
|
| 20 |
-
tqdm
|
| 21 |
-
|
| 22 |
# Note: The ai_messaging_system_v2 package must be in the parent directory
|
| 23 |
# and its dependencies will be inherited from the main project
|
|
|
|
| 1 |
# AI Messaging System - Visualization Tool Requirements
|
| 2 |
|
| 3 |
# Core Dependencies
|
| 4 |
+
streamlit==1.50.0
|
| 5 |
+
pandas==2.2.0
|
| 6 |
+
python-dotenv==1.0.0
|
| 7 |
|
| 8 |
# Data Visualization
|
| 9 |
+
plotly==6.5.1
|
| 10 |
|
| 11 |
# Snowflake Integration
|
| 12 |
+
snowflake-snowpark-python==1.19.0
|
| 13 |
|
| 14 |
# AI/LLM APIs
|
| 15 |
+
openai==1.99.9
|
| 16 |
+
google-genai==1.24.0
|
| 17 |
|
| 18 |
# Utility Libraries
|
| 19 |
+
pathlib==1.0.0
|
| 20 |
+
tqdm==4.66.4
|
|
|
|
| 21 |
# Note: The ai_messaging_system_v2 package must be in the parent directory
|
| 22 |
# and its dependencies will be inherited from the main project
|