Hanzo Agent SDK¶
Documentation
For full Agent SDK documentation, see the detailed docs.
The Hanzo Agent SDK enables building agentic AI applications with a lightweight, production-ready framework.
Quick Start¶
from agents import Agent, Runner
agent = Agent(
name="assistant",
instructions="You are a helpful assistant."
)
result = Runner.run_sync(agent, "Hello!")
print(result.final_output)
Core Concepts¶
- Agents - LLMs configured with instructions and tools
- Handoffs - Allow agents to delegate to other agents
- Guardrails - Validate agent inputs and outputs
- Tracing - Built-in observability
Navigation¶
- Agents - Creating and configuring agents
- Running Agents - Execution patterns
- Tools - Adding tools to agents
- Handoffs - Multi-agent coordination
- Tracing - Observability and debugging