mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
7e23140ca9
* Move packages * Update nuget.config * Address Xmldoc * Remove format from branches checks * Address Xmldocs * Add more details to the implementation * Moving Agent logic to ChatClient * Adding Name and Id overrides to AzureAIAgent * Updating extensions * Add GetAiAgent extensions * Adding support for version as name can conflict 409 using the Agents API with same name * Addressing more updates to the extensions * More improvements * Remove debugging code from sample * Address copilot feedback * Apply suggestions from co-pilot code review
36 lines
1.8 KiB
C#
36 lines
1.8 KiB
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
// This sample shows how to create and use a simple AI agent with Azure Foundry Agents as the backend.
|
|
|
|
using Azure.AI.Agents;
|
|
using Azure.Identity;
|
|
using Microsoft.Agents.AI;
|
|
|
|
var endpoint = Environment.GetEnvironmentVariable("AZURE_FOUNDRY_PROJECT_ENDPOINT") ?? throw new InvalidOperationException("AZURE_FOUNDRY_PROJECT_ENDPOINT is not set.");
|
|
var deploymentName = Environment.GetEnvironmentVariable("AZURE_FOUNDRY_PROJECT_DEPLOYMENT_NAME") ?? "gpt-4o-mini";
|
|
|
|
const string JokerInstructions = "You are good at telling jokes.";
|
|
const string JokerName = "JokerAgent";
|
|
|
|
// Get a client to create/retrieve server side agents with.
|
|
var agentsClient = new AgentsClient(new Uri(endpoint), new AzureCliCredential());
|
|
|
|
// Define the agent you want to create.
|
|
var agentDefinition = new PromptAgentDefinition(model: deploymentName) { Instructions = JokerInstructions };
|
|
|
|
// You can create a server side agent with the Azure.AI.Agents SDK.
|
|
var agentVersion = agentsClient.CreateAgentVersion(agentName: JokerName, definition: agentDefinition).Value;
|
|
|
|
// You can retrieve an already created server side agent as an AIAgent.
|
|
AIAgent existingAgent = await agentsClient.GetAIAgentAsync(deploymentName, agentVersion.Name);
|
|
|
|
// You can also create a server side persistent agent and return it as an AIAgent directly.
|
|
var createdAgent = agentsClient.CreateAIAgent(deploymentName, name: JokerName, instructions: JokerInstructions);
|
|
|
|
// You can then invoke the agent like any other AIAgent.
|
|
AgentThread thread = existingAgent.GetNewThread();
|
|
Console.WriteLine(await existingAgent.RunAsync("Tell me a joke about a pirate.", thread));
|
|
|
|
// Cleanup by agent name (removes both agent versions created by existingAgent + createdAgent).
|
|
await agentsClient.DeleteAgentAsync(agentVersion.Name);
|