mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
e224f06e60
* Update models used in dotnet samples to gpt-5.4-mini * Fix additional missed sample
42 lines
2.1 KiB
C#
42 lines
2.1 KiB
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
// This sample demonstrates Human-in-the-Loop (HITL) capabilities with thread persistence.
|
|
// The agent wraps function tools with ApprovalRequiredAIFunction to require user approval
|
|
// before invoking them. Users respond with 'approve' or 'reject' when prompted.
|
|
|
|
using System.ComponentModel;
|
|
using Azure.AI.AgentServer.AgentFramework.Extensions;
|
|
using Azure.AI.AgentServer.AgentFramework.Persistence;
|
|
using Azure.AI.OpenAI;
|
|
using Azure.Identity;
|
|
using Microsoft.Agents.AI;
|
|
using Microsoft.Extensions.AI;
|
|
using OpenAI.Chat;
|
|
|
|
string endpoint = Environment.GetEnvironmentVariable("AZURE_OPENAI_ENDPOINT") ?? throw new InvalidOperationException("AZURE_OPENAI_ENDPOINT is not set.");
|
|
string deploymentName = Environment.GetEnvironmentVariable("AZURE_OPENAI_DEPLOYMENT_NAME") ?? "gpt-5.4-mini";
|
|
|
|
[Description("Get the weather for a given location.")]
|
|
static string GetWeather([Description("The location to get the weather for.")] string location)
|
|
=> $"The weather in {location} is cloudy with a high of 15°C.";
|
|
|
|
// Create the chat client and agent.
|
|
// Note: ApprovalRequiredAIFunction wraps the tool to require user approval before invocation.
|
|
// User should reply with 'approve' or 'reject' when prompted.
|
|
// WARNING: DefaultAzureCredential is convenient for development but requires careful consideration in production.
|
|
// In production, consider using a specific credential (e.g., ManagedIdentityCredential) to avoid
|
|
// latency issues, unintended credential probing, and potential security risks from fallback mechanisms.
|
|
#pragma warning disable MEAI001 // Type is for evaluation purposes only
|
|
AIAgent agent = new AzureOpenAIClient(
|
|
new Uri(endpoint),
|
|
new DefaultAzureCredential())
|
|
.GetChatClient(deploymentName)
|
|
.AsAIAgent(
|
|
instructions: "You are a helpful assistant",
|
|
tools: [new ApprovalRequiredAIFunction(AIFunctionFactory.Create(GetWeather))]
|
|
);
|
|
#pragma warning restore MEAI001
|
|
|
|
InMemoryAgentThreadRepository threadRepository = new(agent);
|
|
await agent.RunAIAgentAsync(telemetrySourceName: "Agents", threadRepository: threadRepository);
|