Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dependencies = [
"cachetools>=5.3.2",
"jinja2>=3.1.6",
"python-dotenv>=1.1.1",
"litellm>=1.79.1", # 1.72.6+ required for langfuse_otel callback
"litellm>=1.79.1,!=1.82.7,!=1.82.8", # 1.72.6+ required for langfuse_otel callback, excluded 1.82.(7|8) to avoid supply chain attack
"pydantic>=2.10.0",
"pyyaml>=6.0.3",
]
Expand Down Expand Up @@ -66,7 +66,7 @@ visualization = [
"pygraphviz>=1.14",
]
adk = [
"google-adk>=1.17.0",
"google-adk>=v1.28.0", # see https://github.com/google/adk-python/commit/77f1c41be61eed017b008d7ab311923e30b46643
"nest-asyncio>=1.6.0", # required by google-adk for nested event loops
"wrapt>=1.17.3", # required for ADK monkey patches
"openinference-instrumentation-google-adk>=0.1.0",
Expand Down Expand Up @@ -103,6 +103,11 @@ all = [
]


[tool.uv]
# https://docs.astral.sh/uv/concepts/resolution/#dependency-cooldowns
exclude-newer = "1 week"
exclude-newer-package = { setuptools = "30 days" }

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
Expand Down
Loading