v0.1.6 Beta Build Intelligent
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.")
Lightweight Core
No heavy dependencies like LangChain. Built on pure Python for maximum speed and minimal bloat.
Model Agnostic
Switch seamlessly between OpenAI, Gemini, Claude, Ollama, and other providers with a unified API.
Middleware System
Extend capabilities with RAG, Human-in-the-Loop approval, Logging, and Safety checks easily.
Swarm Architecture
Build autonomous mesh networks where agents collaborate, delegate, and handoff tasks intelligently.