Expand description
Agent delegation primitives.
A delegate is another agent-shaped capability exposed as a normal
Tool. The model still decides when to call it; the runtime merely
provides an implementation. This keeps delegation agentic while allowing
hosts to run child agents in the same process when that is cheaper than
MCP or another remote transport.
Structs§
- Delegate
Registry - Registry of in-process delegate executors provided by the host.
- Delegate
Tool - Tool wrapper around a delegate executor.
- InProcess
Agent Delegate - Delegate executor that drives another
Agentin the same process.
Traits§
- Delegate
Executor - Async implementation behind a delegate tool.
Type Aliases§
- Delegate
Name - Stable key for a delegate executor. Manifests usually reference this
through
delegates[].agent; when omitted,delegates[].nameis used.