Skip to content

Commit 88c1c76

Browse files
Merge pull request #704 from westey-m/af-samples-nuget-prerelease-2
Add pre-release and remove redundant package adds
2 parents 491ff23 + 236f067 commit 88c1c76

5 files changed

Lines changed: 7 additions & 10 deletions

File tree

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,7 @@ To use the AgentFramework with Azure OpenAI, you need to install the following N
2727
```powershell
2828
dotnet add package Azure.Identity
2929
dotnet add package Azure.AI.OpenAI
30-
dotnet add package Microsoft.Extensions.AI.OpenAI
31-
dotnet add package Microsoft.Agents.AI.OpenAI
30+
dotnet add package Microsoft.Agents.AI.OpenAI --prerelease
3231
```
3332

3433
To also add OpenTelemetry support, with support for writing to the console, install these additional packages:

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,7 @@ To use the Microsoft Agent Framework with Azure OpenAI, you need to install the
3939
```powershell
4040
dotnet add package Azure.Identity
4141
dotnet add package Azure.AI.OpenAI
42-
dotnet add package Microsoft.Extensions.AI.OpenAI
43-
dotnet add package Microsoft.Agents.AI.OpenAI
42+
dotnet add package Microsoft.Agents.AI.OpenAI --prerelease
4443
```
4544

4645
## Creating the agent

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,7 @@ To use the Microsoft Agent Framework with Azure OpenAI, you need to install the
3131
```powershell
3232
dotnet add package Azure.Identity
3333
dotnet add package Azure.AI.OpenAI
34-
dotnet add package Microsoft.Extensions.AI.OpenAI
35-
dotnet add package Microsoft.Agents.AI.OpenAI
34+
dotnet add package Microsoft.Agents.AI.OpenAI --prerelease
3635
```
3736

3837
In addition to this, we will use the in-memory vector store to store chat messages and a utility package for async LINQ operations.

agent-framework/tutorials/quick-start.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ First, add the following Microsoft Agent Framework NuGet packages into your appl
3939
```powershell
4040
dotnet add package Azure.AI.OpenAI
4141
dotnet add package Azure.Identity
42-
dotnet add package Microsoft.Agents.AI.OpenAI
42+
dotnet add package Microsoft.Agents.AI.OpenAI --prerelease
4343
```
4444

4545
## Running a Basic Agent Sample
@@ -114,7 +114,7 @@ To download nightly builds follow the following steps:
114114
* If you place this file in your project folder make sure to have Git (or whatever source control you use) ignore it.
115115
* For more information on where to store this file go [here](/nuget/reference/nuget-config-file).
116116
1. You can now add packages from the nightly build to your project.
117-
* E.g. use this command `dotnet add package Microsoft.Agents.AI`
117+
* E.g. use this command `dotnet add package Microsoft.Agents.AI --prerelease`
118118
1. And the latest package release can be referenced in the project like this:
119119
* `<PackageReference Include="Microsoft.Agents.AI" Version="*-*" />`
120120

agent-framework/tutorials/workflows/workflow-with-branching-logic.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ You'll create an email processing workflow that demonstrates conditional routing
4141
First, install the required packages for your .NET project:
4242

4343
```bash
44-
dotnet add package Microsoft.Agents.AI.Workflows
45-
dotnet add package Microsoft.Agents.AI.Workflows.Reflection
44+
dotnet add package Microsoft.Agents.AI.Workflows --prerelease
45+
dotnet add package Microsoft.Agents.AI.Workflows.Reflection --prerelease
4646
dotnet add package Azure.AI.OpenAI
4747
dotnet add package Microsoft.Extensions.AI
4848
dotnet add package Azure.Identity

0 commit comments

Comments
 (0)