CLI Tools2026年4月7日·1 分钟阅读

OpenAI Agents SDK — Build Multi-Agent Systems in Python

Official OpenAI Python SDK for building multi-agent systems with handoffs, guardrails, and tracing. Agents delegate to specialists, enforce safety rules, and produce observable traces. 8,000+ stars.

介绍

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.


Quick Start

pip install openai-agents
from 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+

🙏

来源与感谢

Created by OpenAI. Licensed under MIT.

openai-agents-python — stars 8,000+

讨论

登录后参与讨论。
还没有评论,来写第一条吧。

相关资产