add links and mcp + voice examples (#438)

This commit is contained in:
James Hills 2025-04-04 16:53:12 -07:00 committed by GitHub
parent 0396052dcd
commit 064e25b01b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -5,32 +5,38 @@ Check out a variety of sample implementations of the SDK in the examples section
## Categories ## Categories
- **agent_patterns:** - **[agent_patterns](https://github.com/openai/openai-agents-python/tree/main/examples/agent_patterns):**
Examples in this category illustrate common agent design patterns, such as Examples in this category illustrate common agent design patterns, such as
- Deterministic workflows - Deterministic workflows
- Agents as tools - Agents as tools
- Parallel agent execution - Parallel agent execution
- **basic:** - **[basic](https://github.com/openai/openai-agents-python/tree/main/examples/basic):**
These examples showcase foundational capabilities of the SDK, such as These examples showcase foundational capabilities of the SDK, such as
- Dynamic system prompts - Dynamic system prompts
- Streaming outputs - Streaming outputs
- Lifecycle events - Lifecycle events
- **tool examples:** - **[tool examples](https://github.com/openai/openai-agents-python/tree/main/examples/tools):**
Learn how to implement OAI hosted tools such as web search and file search, Learn how to implement OAI hosted tools such as web search and file search,
and integrate them into your agents. and integrate them into your agents.
- **model providers:** - **[model providers](https://github.com/openai/openai-agents-python/tree/main/examples/model_providers):**
Explore how to use non-OpenAI models with the SDK. Explore how to use non-OpenAI models with the SDK.
- **handoffs:** - **[handoffs](https://github.com/openai/openai-agents-python/tree/main/examples/handoffs):**
See practical examples of agent handoffs. See practical examples of agent handoffs.
- **customer_service** and **research_bot:** - **[mcp](https://github.com/openai/openai-agents-python/tree/main/examples/mcp):**
Learn how to build agents with MCP.
- **[customer_service](https://github.com/openai/openai-agents-python/tree/main/examples/customer_service)** and **[research_bot](https://github.com/openai/openai-agents-python/tree/main/examples/research_bot):**
Two more built-out examples that illustrate real-world applications Two more built-out examples that illustrate real-world applications
- **customer_service**: Example customer service system for an airline. - **customer_service**: Example customer service system for an airline.
- **research_bot**: Simple deep research clone. - **research_bot**: Simple deep research clone.
- **[voice](https://github.com/openai/openai-agents-python/tree/main/examples/voice):**
See examples of voice agents, using our TTS and STT models.