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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ directly:
| [Documentation site](https://ai-agent-assembly.github.io/agent-assembly-docs/) | Canonical, cross-repo documentation hub for the whole project. |
| [python-sdk](https://github.com/ai-agent-assembly/python-sdk) | **This repo** β€” the Python SDK. |
| [node-sdk](https://github.com/ai-agent-assembly/node-sdk) Β· [go-sdk](https://github.com/ai-agent-assembly/go-sdk) | Sibling SDKs for TypeScript/Node and Go. |
| [homebrew-agent-assembly](https://github.com/ai-agent-assembly/homebrew-agent-assembly) | Homebrew tap for installing the `aasm` runtime CLI. |
| [homebrew-tap](https://github.com/ai-agent-assembly/homebrew-tap) | Homebrew tap for installing the `aasm` runtime CLI. |
| [agent-assembly-examples](https://github.com/ai-agent-assembly/agent-assembly-examples) | Runnable examples β€” learn by running small, framework-specific Python (and Node/Go) samples covering policy enforcement, approvals, audit, trace, and runtime workflows. |

The protocol specification and gateway behaviour the SDK targets live in the core runtime
Expand Down
2 changes: 1 addition & 1 deletion agent_assembly/_install.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
INSTALL_HINT = (
"agent-assembly runtime binary `aasm` was not found.\n"
" Install the platform wheel: pip install agent-assembly[runtime]\n"
" Or install manually: brew install agent-assembly/tap/aasm\n"
" Or install manually: brew install ai-agent-assembly/tap/aasm\n"
" curl -fsSL https://get.agent-assembly.io | sh"
)

Expand Down
2 changes: 1 addition & 1 deletion agent_assembly/runtime.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
INSTALL_HINT = (
"agent-assembly runtime not found.\n"
" Install with: pip install agent-assembly-python[runtime]\n"
" Or manually: brew install agent-assembly/tap/aasm\n"
" Or manually: brew install ai-agent-assembly/tap/aasm\n"
" curl -fsSL https://get.agent-assembly.io | sh"
)

Expand Down