Skip to content

Commit ff5f0bb

Browse files
committed
Use --prerelease for Azure.AI.OpenAI in tutorials/agents
1 parent 4e43bef commit ff5f0bb

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

agent-framework/tutorials/agents/agent-as-mcp-tool.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ For prerequisites see the [Create and run a simple agent](./run-agent.md#prerequ
2424
To use Microsoft Agent Framework with Azure OpenAI, you need to install the following NuGet packages:
2525

2626
```dotnetcli
27+
dotnet add package Azure.AI.OpenAI --prerelease
2728
dotnet add package Azure.Identity
28-
dotnet add package Azure.AI.OpenAI
2929
dotnet add package Microsoft.Agents.AI.OpenAI --prerelease
3030
```
3131

agent-framework/tutorials/agents/enable-observability.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ For prerequisites, see the [Create and run a simple agent](./run-agent.md#prereq
2828
To use Microsoft Agent Framework with Azure OpenAI, you need to install the following NuGet packages:
2929

3030
```dotnetcli
31+
dotnet add package Azure.AI.OpenAI --prerelease
3132
dotnet add package Azure.Identity
32-
dotnet add package Azure.AI.OpenAI
3333
dotnet add package Microsoft.Agents.AI.OpenAI --prerelease
3434
```
3535

agent-framework/tutorials/agents/run-agent.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ Before you begin, ensure you have the following prerequisites:
3838
To use Microsoft Agent Framework with Azure OpenAI, you need to install the following NuGet packages:
3939

4040
```dotnetcli
41+
dotnet add package Azure.AI.OpenAI --prerelease
4142
dotnet add package Azure.Identity
42-
dotnet add package Azure.AI.OpenAI
4343
dotnet add package Microsoft.Agents.AI.OpenAI --prerelease
4444
```
4545

agent-framework/tutorials/agents/third-party-chat-history-storage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ For prerequisites, see the [Create and run a simple agent](./run-agent.md) step
2828
To use Microsoft Agent Framework with Azure OpenAI, you need to install the following NuGet packages:
2929

3030
```dotnetcli
31+
dotnet add package Azure.AI.OpenAI --prerelease
3132
dotnet add package Azure.Identity
32-
dotnet add package Azure.AI.OpenAI
3333
dotnet add package Microsoft.Agents.AI.OpenAI --prerelease
3434
```
3535

agent-framework/tutorials/quick-start.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Packages will be published to [NuGet Gallery | MicrosoftAgentFramework](https://
3939
First, add the following Microsoft Agent Framework NuGet packages into your application, using the following commands:
4040

4141
```dotnetcli
42-
dotnet add package Azure.AI.OpenAI
42+
dotnet add package Azure.AI.OpenAI --prerelease
4343
dotnet add package Azure.Identity
4444
dotnet add package Microsoft.Agents.AI.OpenAI --prerelease
4545
```

0 commit comments

Comments
 (0)