Quick Start
pip install openai-agentsfrom agents import Agent, Runner
agent = Agent(name="assistant", instructions="You are a helpful assistant.")
result = Runner.run_sync(agent, "What is the capital of France?")Overview
OpenAI Agents SDK is OpenAI's official Python multi-agent framework with 8,000+ GitHub stars. Supports inter-agent handoffs, safety guardrails, and execution tracing. Best for building production agent systems on OpenAI models.
Source & Thanks
Created by OpenAI. Licensed under MIT.
openai-agents-python — stars 8,000+