GA
Open Source
Free Tier

Hanzo Agent

Multi-agent orchestration SDK

Build and orchestrate AI agents with built-in tools, memory, and planning. OpenAI Agents SDK compatible.

Agent Workflow
Input
Planner
Tools
Output
Tool Calls
search_web
120ms
read_file
45ms
write_code
...

Get Started

Install Agent in seconds

pip
$ pip install hanzo-agent

New to Hanzo? Install the CLI first: curl -fsSL hanzo.sh | bash

Code Examples

Agent Quick Start

Get started in minutes with your language of choice

Create a multi-agent system

from hanzoai import Agent, Swarm

# Define specialized agents
researcher = Agent(
    name="Researcher",
    instructions="You research topics thoroughly.",
    model="gpt-4o"
)

writer = Agent(
    name="Writer",
    instructions="You write clear, engaging content.",
    model="claude-3-5-sonnet"
)

# Create swarm and run
swarm = Swarm()
result = swarm.run(
    agent=researcher,
    messages=[{"role": "user", "content": "Research AI trends"}],
    handoff_to=writer
)
print(result.messages[-1].content)

Features

Everything you need to get started

Multi-agent
Tool use
Memory systems
Planning
Handoffs
Tracing
OpenAI compatible
MCP support
SDKs & Libraries

Official Agent SDKs

Use our official SDKs to integrate Agent into your application

Hanzo Python SDK

PyPI
pip install hanzoai

Hanzo TypeScript SDK

npm
npm install @hanzo/ai

Hanzo Go SDK

Go Modules
go get github.com/hanzoai/go-sdk

Hanzo Rust SDK

crates.io
cargo add hanzoai
Community

Join the Agent Community

Get help, share ideas, and contribute to the project

Want to Contribute?

We welcome contributions of all kinds: bug reports, feature requests, documentation improvements, and code contributions.

Read our Contributing Guide

Ready to get started with Agent?

Deploy in minutes with Hanzo Cloud or self-host with our open-source release.