From 8b5f2fd042f99d40bec3dca2c0e1df763098ed67 Mon Sep 17 00:00:00 2001 From: sumitaryal Date: Wed, 12 Mar 2025 10:47:48 +0545 Subject: [PATCH 1/2] fix: hyphenated compound adjective easy to use -> easy-to-use for clarity --- docs/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.md b/docs/index.md index ba757c1a4..f4e9a9879 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1,6 +1,6 @@ # OpenAI Agents SDK -The [OpenAI Agents SDK](https://github.com/openai/openai-agents-python) enables you to build agentic AI apps in a lightweight, easy to use package with very few abstractions. It's a production-ready upgrade of our previous experimentation for agents, [Swarm](https://github.com/openai/swarm/tree/main). The Agents SDK has a very small set of primitives: +The [OpenAI Agents SDK](https://github.com/openai/openai-agents-python) enables you to build agentic AI apps in a lightweight, easy-to-use package with very few abstractions. It's a production-ready upgrade of our previous experimentation for agents, [Swarm](https://github.com/openai/swarm/tree/main). The Agents SDK has a very small set of primitives: - **Agents**, which are LLMs equipped with instructions and tools - **Handoffs**, which allow agents to delegate to other agents for specific tasks From e022d2c2a36c340b05d2210191d729d80fe54e6e Mon Sep 17 00:00:00 2001 From: sumitaryal Date: Wed, 12 Mar 2025 10:48:29 +0545 Subject: [PATCH 2/2] fix: hyphenated compound adjective real world -> real-world for clarity --- docs/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.md b/docs/index.md index f4e9a9879..8aef6574e 100644 --- a/docs/index.md +++ b/docs/index.md @@ -6,7 +6,7 @@ The [OpenAI Agents SDK](https://github.com/openai/openai-agents-python) enables - **Handoffs**, which allow agents to delegate to other agents for specific tasks - **Guardrails**, which enable the inputs to agents to be validated -In combination with Python, these primitives are powerful enough to express complex relationships between tools and agents, and allow you to build real world applications without a steep learning curve. In addition, the SDK comes with built-in **tracing** that lets you visualize and debug your agentic flows, as well as evaluate them and even fine-tune models for your application. +In combination with Python, these primitives are powerful enough to express complex relationships between tools and agents, and allow you to build real-world applications without a steep learning curve. In addition, the SDK comes with built-in **tracing** that lets you visualize and debug your agentic flows, as well as evaluate them and even fine-tune models for your application. ## Why use the Agents SDK