@@ -25,6 +25,7 @@ classifiers = [ # List of https://pypi.org/classifiers/
25
25
]
26
26
dependencies = [
27
27
# go/keep-sorted start
28
+ " anyio>=4.9.0;python_version>='3.10'" , # For MCP Session Manager
28
29
" authlib>=1.5.1" , # For RestAPI Tool
29
30
" click>=8.1.8" , # For CLI tools
30
31
" fastapi>=0.115.0" , # FastAPI framework
@@ -40,12 +41,16 @@ dependencies = [
40
41
" opentelemetry-exporter-gcp-trace>=1.9.0" ,
41
42
" opentelemetry-sdk>=1.31.0" ,
42
43
" pydantic>=2.0, <3.0.0" , # For data validation/models
44
+ " python-dateutil>=2.9.0.post0" , # For Vertext AI Session Service
43
45
" python-dotenv>=1.0.0" , # To manage environment variables
44
46
" PyYAML>=6.0.2" , # For APIHubToolset.
47
+ " requests>=2.32.4" ,
45
48
" sqlalchemy>=2.0" , # SQL database ORM
46
- " tzlocal>=5.3 " , # Time zone utilities
49
+ " starlette>=0.46.2 " , # For FastAPI CLI
47
50
" typing-extensions>=4.5, <5" ,
51
+ " tzlocal>=5.3" , # Time zone utilities
48
52
" uvicorn>=0.34.0" , # ASGI server for FastAPI
53
+ " websockets>=15.0.1" , # For BaseLlmFlow
49
54
# go/keep-sorted end
50
55
]
51
56
dynamic = [" version" ]
0 commit comments