Danialebrat commited on
Commit
bd9c6fc
·
1 Parent(s): 96becf2

Fixing deployment issues:

Browse files

- updating versions and solving version conflicts

Files changed (2) hide show
  1. requirements.txt +31 -35
  2. 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
- streamlit>=1.30.0
6
- pandas>=2.0.0
7
- numpy>=1.20.0
8
- python-dotenv>=1.0.0
9
 
10
  # Data Visualization
11
- plotly>=5.17.0
12
 
13
  # Snowflake Integration
14
- snowflake-snowpark-python>=1.19.0
15
- snowflake-connector-python>=3.0.0
16
- pyarrow>=21.0.0
17
- cloudpickle>=1.6.0,<=2.2.1
18
- pyyaml>=6.0.0
19
 
20
  # Date/Time Handling
21
- pytz>=2020.1
22
- python-dateutil>=2.8.0
23
- tzdata>=2022.7
24
 
25
  # AI/ML APIs
26
- openai>=1.99.0
27
- google-genai>=1.24.0
28
- anyio>=4.8.0,<5.0.0
29
- google-auth>=2.14.1,<3.0.0
30
- httpx>=0.28.1,<1.0.0
31
- pydantic>=2.0.0,<3.0.0
32
- tenacity>=8.2.3,<9.0.0
33
- websockets>=13.0.0,<15.1.0
34
- distro>=1.7.0,<2.0.0
35
- jiter>=0.4.0,<1.0.0
36
- sniffio>=1.0.0
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>=2017.4.17
44
- requests>=2.25.0,<3.0.0
45
- urllib3>=1.21.1,<2.0.0
46
- cryptography>=3.1.0
47
- pyopenssl>=22.0.0,<26.0.0
48
- cffi>=1.9,<2.0.0
49
 
50
  # Utility Libraries
51
- tqdm>=4.66.0
 
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>=1.30.0
5
- pandas>=2.0.0
6
- python-dotenv>=1.0.0
7
 
8
  # Data Visualization
9
- plotly>=5.17.0
10
 
11
  # Snowflake Integration
12
- snowflake-snowpark-python>=1.9.0
13
 
14
  # AI/LLM APIs
15
- openai>=1.3.0
16
- google-generativeai>=0.3.0
17
 
18
  # Utility Libraries
19
- pathlib>=1.0.1
20
- tqdm>=4.66.0
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