Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
13 commits
Select commit Hold shift + click to select a range
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
10 changes: 2 additions & 8 deletions python/agno-tool-policy/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@ description = "Agent Assembly governance demo with the native Agno adapter"
requires-python = ">=3.12"
dependencies = [
# Requires the agent-assembly release that ships the native Agno adapter
# (agent_assembly.adapters.agno, AAASM-3537). Until that release is on PyPI,
# install the SDK from the python-sdk repo's AAASM-3537 branch.
"agent-assembly>=0.0.1b4",
# (agent_assembly.adapters.agno, AAASM-3537), published on PyPI as 0.0.1b5.
"agent-assembly>=0.0.1b5",
"agno>=2.0.0",
]

Expand All @@ -19,8 +18,3 @@ dev = [
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]

[tool.uv.sources]
# Track the SDK's git master so the example validates against the merged
# adapter until 0.0.1b5 publishes it to PyPI. Revert to the PyPI pin then.
agent-assembly = { git = "https://github.com/ai-agent-assembly/python-sdk.git", branch = "master" }
13 changes: 10 additions & 3 deletions python/agno-tool-policy/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion python/crewai-research-crew/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.1.0"
description = "Agent Assembly governance demo: a CrewAI multi-agent research crew"
requires-python = ">=3.12"
dependencies = [
"agent-assembly>=0.0.1b2",
"agent-assembly>=0.0.1b5",
]

[project.optional-dependencies]
Expand Down
14 changes: 7 additions & 7 deletions python/crewai-research-crew/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion python/custom-tool-policy/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.1.0"
description = "Agent Assembly governance demo with plain Python tools — no framework required"
requires-python = ">=3.12"
dependencies = [
"agent-assembly>=0.0.1b2",
"agent-assembly>=0.0.1b5",
]

[project.optional-dependencies]
Expand Down
14 changes: 7 additions & 7 deletions python/custom-tool-policy/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion python/google-adk/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.1.0"
description = "Agent Assembly governance demo with Google ADK"
requires-python = ">=3.12"
dependencies = [
"agent-assembly>=0.0.1b2",
"agent-assembly>=0.0.1b5",
"google-adk>=2.2.0",
]

Expand Down
14 changes: 7 additions & 7 deletions python/google-adk/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 1 addition & 7 deletions python/haystack-tool-policy/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.1.0"
description = "Agent Assembly governance demo: a real Haystack agent governed via the native adapter"
requires-python = ">=3.12"
dependencies = [
"agent-assembly>=0.0.1b2",
"agent-assembly>=0.0.1b5",
# Haystack 2.x ships the `Tool` / `ToolInvoker` API the SDK's native adapter
# hooks (haystack.tools.Tool.invoke). 1.x predates it and is out of scope.
"haystack-ai>=2.0.0,<3.0",
Expand All @@ -19,9 +19,3 @@ dev = [
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]

[tool.uv.sources]
# Track the SDK's git master so the example validates against the latest merged
# adapter before 0.0.1b5 publishes it to PyPI. Switch back to the PyPI release
# pin once 0.0.1b5 is out.
agent-assembly = { git = "https://github.com/ai-agent-assembly/python-sdk.git", branch = "master" }
13 changes: 10 additions & 3 deletions python/haystack-tool-policy/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion python/langchain-basic-agent/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.1.0"
description = "Agent Assembly governance demo with LangChain"
requires-python = ">=3.12"
dependencies = [
"agent-assembly>=0.0.1b2",
"agent-assembly>=0.0.1b5",
"langchain-core>=1.4.7",
]

Expand Down
Loading
Loading