Skip to content

Commit a03fc6e

Browse files
committed
Update extension bundle version to 4.34.0 in host.json and add setup instructions for preview version in getting-started.md
1 parent fe83da2 commit a03fc6e

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

docs/openai_agents/getting-started.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,18 @@ pip install -r requirements.txt
6262

6363
**Durable Task Scheduler is the preferred backend** for this integration as it provides enhanced performance, better observability, and simplified local development. While not a hard requirement, it's strongly recommended for production workloads.
6464

65+
> IMPORTANT: Ensure your function app is using the *preview* extension bundle version 4.34.0 or higher by specifying it in `host.json`:
66+
>
67+
> ```json
68+
> {
69+
> "version": "2.0",
70+
> "extensionBundle": {
71+
> "id": "Microsoft.Azure.Functions.ExtensionBundle.Preview",
72+
> "version": "[4.34.0, 5.0.0)"
73+
> }
74+
> }
75+
> ```
76+
6577
There are two ways to configure the backend locally:
6678
6779
#### Using the Emulator (Recommended)

samples-v2/openai_agents/host.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919
},
2020
"extensionBundle": {
2121
"id": "Microsoft.Azure.Functions.ExtensionBundle.Preview",
22-
"version": "[4.29.0, 5.0.0)"
22+
"version": "[4.34.0, 5.0.0)"
2323
}
2424
}

0 commit comments

Comments
 (0)