Skip to content

Commit eff54bf

Browse files
authored
Fix name of OpenAI Agents Integration (#576)
* Fix name of OpenAI Agents Integration * Update docs/openai_agents/getting-started.md
1 parent fe83da2 commit eff54bf

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Follow these instructions to get started with Durable Functions in Python:
2929

3030
* Python Durable Functions requires [Azure Functions Core Tools](https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local) version 3.0.2630 or higher.
3131

32-
## Durable OpenAI Agents (Preview)
32+
## OpenAI Agents Integration for Reliability on Azure Functions (Preview)
3333

3434
Build resilient, stateful AI agents backed by Durable Functions orchestration—see the full documentation at [docs/openai_agents/README.md](docs/openai_agents/README.md).
3535

docs/openai_agents/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# Durable OpenAI Agents
1+
# OpenAI Agents Integration for Reliability on Azure Functions (Preview)
22

33
Build production-ready AI agents with automatic state persistence and failure recovery.
44

55
## Overview
66

7-
The Durable OpenAI Agents integration combines the familiar OpenAI Agents SDK with Azure Durable Functions to create reliable, stateful AI agents that can survive any failure and continue exactly where they stopped.
7+
The OpenAI Agents Integration for Reliability on Azure Functions (Preview) integration combines the familiar OpenAI Agents SDK with Azure Durable Functions to create reliable, stateful AI agents that can survive any failure and continue exactly where they stopped.
88

99
## Key Benefits
1010

@@ -19,4 +19,4 @@ The Durable OpenAI Agents integration combines the familiar OpenAI Agents SDK wi
1919
- [Getting Started](getting-started.md) - Setup and your first durable agent
2020
- [Reference](reference.md) - Complete reference documentation
2121

22-
> Dependency & compatibility: The `azure-functions-durable` package does NOT declare `openai` or `openai-agents` as dependencies. If you need Durable OpenAI Agents, explicitly add `openai` and `openai-agents` to your `requirements.txt` (see `samples-v2/openai_agents/requirements.txt`). This integration is validated with the versions currently pinned there (`openai==1.107.3`, `openai-agents==0.3.0`). Because the OpenAI ecosystem changes rapidly, if you encounter issues, first pin to these versions to rule out a version mismatch before filing an issue.
22+
> Dependency & compatibility: The `azure-functions-durable` package does NOT declare `openai` or `openai-agents` as dependencies. If you need the OpenAI Agents Integration for Reliability on Azure Functions (Preview), explicitly add `openai` and `openai-agents` to your `requirements.txt` (see `samples-v2/openai_agents/requirements.txt`). This integration is validated with the versions currently pinned there (`openai==1.107.3`, `openai-agents==0.3.0`). Because the OpenAI ecosystem changes rapidly, if you encounter issues, first pin to these versions to rule out a version mismatch before filing an issue.

docs/openai_agents/getting-started.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Getting Started with Durable OpenAI Agents
1+
# Getting Started with the OpenAI Agents Integration for Reliability on Azure Functions (Preview)
22

33
Getting started guide for implementing stateful AI agents using Azure Durable Functions orchestration with automatic checkpointing and replay semantics.
44

@@ -13,7 +13,7 @@ Getting started guide for implementing stateful AI agents using Azure Durable Fu
1313

1414
### Create an Azure Functions App
1515

16-
This framework is designed specifically for **Azure Functions applications**. You need to create a Python Functions app to use Durable OpenAI Agents.
16+
This framework is designed specifically for **Azure Functions applications**. You need to create a Python Functions app to use the OpenAI Agents Integration for Reliability on Azure Functions (Preview).
1717

1818
**For new users**: If you're new to Azure Functions, follow these guides to get started:
1919
- [Create your first Python function in Azure](https://learn.microsoft.com/en-us/azure/azure-functions/create-first-function-vs-code-python)
@@ -56,7 +56,7 @@ Then install them:
5656
pip install -r requirements.txt
5757
```
5858

59-
> Dependency & compatibility: The `azure-functions-durable` package does NOT declare `openai` or `openai-agents` as dependencies. If you need Durable OpenAI Agents, explicitly add `openai` and `openai-agents` to your `requirements.txt` (see `samples-v2/openai_agents/requirements.txt`). This integration is validated with the versions currently pinned there (`openai==1.107.3`, `openai-agents==0.3.0`). Because the OpenAI ecosystem changes rapidly, if you encounter issues, first pin to these versions to rule out a version mismatch before filing an issue.
59+
> Dependency & compatibility: The `azure-functions-durable` package does NOT declare `openai` or `openai-agents` as dependencies. If you need the OpenAI Agents Integration for Reliability on Azure Functions (Preview), explicitly add `openai` and `openai-agents` to your `requirements.txt` (see `samples-v2/openai_agents/requirements.txt`). This integration is validated with the versions currently pinned there (`openai==1.107.3`, `openai-agents==0.3.0`). Because the OpenAI ecosystem changes rapidly, if you encounter issues, first pin to these versions to rule out a version mismatch before filing an issue.
6060
6161
### Configuring Durable Task Scheduler Backend
6262

docs/openai_agents/reference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Reference Documentation
22

3-
Complete reference for Durable OpenAI Agents integration.
3+
Complete reference for the OpenAI Agents Integration for Reliability on Azure Functions (Preview) integration.
44

55
## Durable Orchestration
66

0 commit comments

Comments
 (0)