OpenAI Agents SDK
DeveloperApplicationPricing unavailable
OpenAI Agents SDK - Build Multi-Agent Systems [2026]
Last updated Apr 28, 2026
Claim Tool
What is OpenAI Agents SDK?
OpenAI Agents SDK's Top Features
Key capabilities that make OpenAI Agents SDK stand out.
Provider-agnostic: supports 100+ LLMs beyond OpenAI
Agent configuration with instructions, tools, and guardrails
Handoffs for delegating tasks between agents
Human-in-the-loop mechanisms
Automatic session and conversation history management
Built-in tracing for debugging and optimization
Sandbox agents with containerized workspaces
MCP server integration for tool access
Realtime voice agents with gpt-realtime-1.5
Workspace mounts for S3, GCS, Azure Blob, and R2
Tags
agentsopenaiframeworkmulti-agentpythonmcpsandboxai-sdkopen-sourcetracing
OpenAI Agents SDK's Pricing
User Reviews
Share your thoughts
If you've used this product, share your thoughts with other builders
Recent reviews
Frequently Asked Questions
Does the OpenAI Agents SDK only work with OpenAI models?
No. Despite the name, the SDK is provider-agnostic. It works with OpenAI APIs and over 100 other LLMs. You can use Anthropic, Google, Mistral, or any provider that supports the chat completions format.
What are sandbox agents?
Sandbox agents are agents that operate in a containerized environment with their own filesystem, shell, and workspace. They can inspect files, run commands, apply patches, and carry workspace state across longer tasks. Available since v0.14.0.
How do handoffs work?
Handoffs let one agent delegate a task to another specialized agent. When Agent A encounters a task better suited for Agent B, it can hand off control. The receiving agent gets full context and can hand back when done.
What are guardrails?
Guardrails are configurable safety checks that validate agent inputs and outputs. You define rules for what is acceptable, and the framework enforces them automatically on every run.
Does the SDK support voice agents?
Yes. The Realtime Agents feature supports voice interactions using gpt-realtime-1.5, with full agent features including tools, handoffs, and guardrails. Install with `pip install openai-agents[voice]`.