OpenAI Agents SDK
Development↓ 0
OPEN-Charlie
Other
multi-agenthandofftracingguardrailspython
Description
OpenAI's official toolkit for building multi-agent systems. Define agents with specific roles and tools, then let them hand tasks off to each other automatically. Built-in tracing shows you exactly what each agent did, making it easy to debug and improve.
Setup Guide
1. pip install openai-agents
2. from agents import Agent, Runner
3. agent = Agent(name="My Agent", instructions="You are a helpful assistant", model="gpt-4o")
4. result = Runner.run_sync(agent, "What is 2+2?")
5. For multi-agent: add handoffs=[other_agent] to enable agent-to-agent delegation