AI Frameworks

OpenAI Agents SDK

Lightweight Python framework for multi-agent systems. Agent handoffs, tool use, guardrails, tracing. Successor to the experimental Swarm project.

Try OpenAI Agents SDKopenai.com/index/agents-sdk

The OpenAI Agents SDK (the production successor to Swarm) is a minimal Python framework for building multi-agent systems. Core concepts: Agents (an LLM + instructions + tools), Handoffs (agents delegating to specialists), Guardrails (input/output validation), and Tracing (built-in observability). It's deliberately lightweight — no heavy abstractions or state management. You define agents as simple Python objects, wire them together with handoffs, and the SDK handles the orchestration. It works with any OpenAI model and supports streaming. Good for building customer service bots, research agents, and workflow automation.

aiframeworkagentsopenaipythonmulti-agent

More AI Frameworks Tools