v0.1.6 Beta

Build Intelligent
Agents & Swarms

A lightweight, zero-dependency Python framework.
Create model-agnostic AI agents, orchestrate swarms, and integrate memory in minutes.

from agent_sdk import Agent, Runner

# 1. Initialize your AI agent
agent = Agent(
    name="DevBot",
    model="gpt-4o",
    instructions="You are a helpful coding assistant."
)

# 2. Run with streaming support
runner = Runner()
runner.run_stream(agent, "Analyze my dataset.")