Skip to content

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