mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
32e054f1fe
* Rename AI Agent packages to use Microsoft.Agents.AI * Fix for build * Fix formatting * Fix formatting * Ignore in VSTHRD200 in migration samples * Ignore in VSTHRD200 in migration samples * Add some missing projects and run format * Fix build errors * Address code review feedback * Fix merge issues --------- Co-authored-by: Mark Wallace <markwallace@microsoft.com>
96 lines
4.5 KiB
Markdown
96 lines
4.5 KiB
Markdown
# Microsoft Agent Framework Getting Started
|
|
|
|
This guide will help you get up and running quickly with a basic agent using the Agent Framework and Azure OpenAI.
|
|
|
|
## Prerequisites
|
|
|
|
Before you begin, ensure you have the following:
|
|
|
|
- [.NET 8.0 SDK or later](https://dotnet.microsoft.com/download)
|
|
- An [Azure OpenAI](https://learn.microsoft.com/azure/ai-services/openai/) resource with a deployed model (e.g., `gpt-4o-mini`)
|
|
- [Azure CLI](https://learn.microsoft.com/cli/azure/install-azure-cli) installed and authenticated (`az login`)
|
|
|
|
**Note**: This demo uses Azure CLI credentials for authentication. Make sure you're logged in with `az login` and have access to the Azure OpenAI resource. For more information, see the [Azure CLI documentation](https://learn.microsoft.com/cli/azure/authenticate-azure-cli-interactively).
|
|
|
|
## Running a Basic Agent Sample
|
|
|
|
This sample demonstrates how to create and use a simple AI agent with Azure OpenAI as the backend. It will create a basic agent using `AzureOpenAIClient` with `gpt-4o-mini` and custom instructions.
|
|
|
|
Make sure to replace `https://your-resource.openai.azure.com/` with the endpoint of your Azure OpenAI resource.
|
|
|
|
### Sample Code
|
|
|
|
```csharp
|
|
using System;
|
|
using Azure.AI.OpenAI;
|
|
using Azure.Identity;
|
|
using Microsoft.Agents.AI;
|
|
using OpenAI;
|
|
|
|
AIAgent agent = new AzureOpenAIClient(
|
|
new Uri("https://your-resource.openai.azure.com/"),
|
|
new AzureCliCredential())
|
|
.GetChatClient("gpt-4o-mini")
|
|
.CreateAIAgent(instructions: "You are good at telling jokes.");
|
|
|
|
Console.WriteLine(await agent.RunAsync("Tell me a joke about a pirate."));
|
|
```
|
|
|
|
For more details and more advanced scenarios, see [Getting Started Steps](../../../dotnet/samples/GettingStartedSteps/).
|
|
|
|
## (Optional) Installing Packages
|
|
|
|
Packages will be published to [NuGet](https://www.nuget.org/) when the Agent Framework public preview is released.
|
|
In the meantime nightly builds of the Agent Framework are available [here](https://github.com/orgs/microsoft/packages?repo_name=agent-framework).
|
|
|
|
To download nightly builds follow the following steps:
|
|
|
|
1. You will need a GitHub account to complete these steps.
|
|
1. Create a GitHub Personal Access Token with the `read:packages` scope using these [instructions](https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/managing-your-personal-access-tokens#creating-a-personal-access-token-classic).
|
|
1. If your account is part of the Microsoft organization then you must authorize the `Microsoft` organization as a single sign-on organization.
|
|
1. Click the "Configure SSO" next to the Personal Access Token you just created and then authorize `Microsoft`.
|
|
1. Use the following command to add the Microsoft GitHub Packages source to your NuGet configuration:
|
|
|
|
```powershell
|
|
dotnet nuget add source --username GITHUBUSERNAME --password GITHUBPERSONALACCESSTOKEN --store-password-in-clear-text --name GitHubMicrosoft "https://nuget.pkg.github.com/microsoft/index.json"
|
|
```
|
|
|
|
1. Or you can manually create a `NuGet.Config` file.
|
|
|
|
```xml
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
<configuration>
|
|
<packageSources>
|
|
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
|
|
<add key="github" value="https://nuget.pkg.github.com/microsoft/index.json" />
|
|
</packageSources>
|
|
|
|
<packageSourceMapping>
|
|
<packageSource key="nuget.org">
|
|
<package pattern="*" />
|
|
</packageSource>
|
|
<packageSource key="github">
|
|
<package pattern="*nightly"/>
|
|
</packageSource>
|
|
</packageSourceMapping>
|
|
|
|
<packageSourceCredentials>
|
|
<github>
|
|
<add key="Username" value="<Your GitHub Id>" />
|
|
<add key="ClearTextPassword" value="<Your Personal Access Token>" />
|
|
</github>
|
|
</packageSourceCredentials>
|
|
</configuration>
|
|
```
|
|
|
|
* If you place this file in your project folder make sure to have Git (or whatever source control you use) ignore it.
|
|
* For more information on where to store this file go [here](https://learn.microsoft.com/en-us/nuget/reference/nuget-config-file).
|
|
1. You can now add packages from the nightly build to your project.
|
|
* E.g. use this command `dotnet add package Microsoft.Extensions.AI.Agents --version 0.0.1-nightly-250731.6-alpha`
|
|
1. And the latest package release can be referenced in the project like this:
|
|
* `<PackageReference Include="Microsoft.Extensions.AI.Agents" Version="*-*" />`
|
|
|
|
For more information see: <https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-nuget-registry>
|
|
|
|
|