From 4495e5b6092c04a02285ee9a6156296691a1e7c4 Mon Sep 17 00:00:00 2001 From: Johann Schleier-Smith Date: Tue, 29 Jul 2025 18:07:49 -0600 Subject: [PATCH] update table of contents for samples --- openai_agents/README.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/openai_agents/README.md b/openai_agents/README.md index 96975ec26..8a51246d5 100644 --- a/openai_agents/README.md +++ b/openai_agents/README.md @@ -1,6 +1,6 @@ # Temporal OpenAI Agents SDK Integration -⚠️ **Experimental** - This module is not yet stable and may change in the future. +⚠️ **Public Preview** - This integration is experimental and its interfaces may change prior to General Availability. This directory contains samples demonstrating how to use the [OpenAI Agents SDK](https://github.com/openai/openai-agents-python) with Temporal's durable execution engine. These samples are adapted from the [OpenAI Agents SDK examples](https://github.com/openai/openai-agents-python/tree/main/examples) and extended with Temporal's durability and orchestration capabilities. @@ -27,7 +27,12 @@ Each directory contains a complete example with its own README for detailed inst - **[Basic Examples](./basic/README.md)** - Simple agent examples including a hello world agent and a tools-enabled agent that can access external APIs like weather services. - **[Agent Patterns](./agent_patterns/README.md)** - Advanced patterns for agent composition, including using agents as tools within other agents. +- **[Tools](./tools/README.md)** - Demonstrates available tools such as file search, image generation, and others. +- **[Handoffs](./handoffs/README.md)** - Agents collaborating via handoffs. +- **[Hosted MCP](./hosted_mcp/README.md)** - Using the MCP client functionality of the OpenAI Responses API. +- **[Model Providers](./model_providers/README.md)** - Using custom LLM providers (e.g., Anthropic via LiteLLM). - **[Research Bot](./research_bot/README.md)** - Multi-agent research system with specialized roles: a planner agent, search agent, and writer agent working together to conduct comprehensive research. - **[Customer Service](./customer_service/README.md)** - Interactive customer service agent with escalation capabilities, demonstrating conversational workflows. - +- **[Reasoning Content](./reasoning_content/README.md)** - Example of how to retrieve the thought process of reasoning models. +- **[Financial Research Agent](./financial_research_agent/README.md)** - Multi-agent financial research system with planner, search, analyst, writer, and verifier agents collaborating.