Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions docs/choosing-an-example.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ All Python examples use the `agent-assembly` Python SDK (PyPI package).

> See [`node/README.md`](../node/README.md) for the full index.

| I want to… | Example sub-project (coming soon) |
| I want to… | Example sub-project |
|------------------------------------------------|------------------------------------------------|
| Wire Agent Assembly into a LangChain.js agent | `node/langchain-js-basic-agent/` |
| Apply tool policies with the OpenAI Node SDK | `node/openai-node-tool-policy/` |
Expand All @@ -72,7 +72,7 @@ All Node.js examples use the `@agent-assembly/sdk` npm package.

> See [`go/README.md`](../go/README.md) for the full index.

| I want to… | Example sub-project (coming soon) |
| I want to… | Example sub-project |
|------------------------------------------------|------------------------------------------------|
| Build a basic governed agent in Go | `go/basic-agent/` |
| Enforce tool-level policies in Go | `go/tool-policy/` |
Expand All @@ -89,7 +89,7 @@ All Go examples use the `github.com/ai-agent-assembly/go-sdk` module.

These examples demonstrate a specific Agent Assembly capability in a language-agnostic way. Pick by what you want to understand.

| I want to understand… | Scenario sub-project (coming soon) |
| I want to understand… | Scenario sub-project |
|------------------------------------------------|------------------------------------------------|
| How policy enforcement works end-to-end | `scenarios/policy-enforcement/` |
| How human-in-the-loop approval gates work | `scenarios/approval-gates/` |
Expand Down
2 changes: 1 addition & 1 deletion python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This directory contains runnable Python examples showing how to integrate Agent

## What lives here

| Sub-project (coming soon) | Framework | What it demonstrates |
| Sub-project | Framework | What it demonstrates |
|------------------------------------|------------------|-----------------------------------------------------------|
| `langchain-basic-agent/` | LangChain | Wire Agent Assembly SDK into a basic LangChain agent |
| `openai-agents-sdk/` | OpenAI Agents SDK| Govern tool calls made by an OpenAI Agents SDK agent |
Expand Down
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.1rc5",
"agent-assembly==0.0.1rc5",
]

[project.optional-dependencies]
Expand Down
22 changes: 15 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.1rc5",
"agent-assembly==0.0.1rc5",
]

[project.optional-dependencies]
Expand Down
22 changes: 15 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/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.1rc5",
"agent-assembly==0.0.1rc5",
# 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.31.0,<3.0",
Expand Down
Loading
Loading