mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
9b61c72e18
* Responses wip * Adding OpenAI Responses Migration samples * Address all samples and code for Azure and OpenAI Responses Migration code * Update dotnet/samples/SemanticKernelMigration/OpenAIResponses/Step02_ReasoningModel/Program.cs Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
57 lines
2.1 KiB
C#
57 lines
2.1 KiB
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
using System.ComponentModel;
|
|
using Azure.AI.OpenAI;
|
|
using Azure.Identity;
|
|
using Microsoft.Extensions.AI;
|
|
using Microsoft.SemanticKernel;
|
|
using Microsoft.SemanticKernel.Agents.OpenAI;
|
|
using OpenAI;
|
|
|
|
#pragma warning disable OPENAI001 // Type is for evaluation purposes only and is subject to change or removal in future updates. Suppress this diagnostic to proceed.
|
|
|
|
var endpoint = Environment.GetEnvironmentVariable("AZUREOPENAI_ENDPOINT") ?? throw new InvalidOperationException("AZUREOPENAI_ENDPOINT is not set.");
|
|
var deploymentName = System.Environment.GetEnvironmentVariable("AZUREOPENAI_DEPLOYMENT_NAME") ?? "gpt-4o";
|
|
var userInput = "What is the weather like in Amsterdam?";
|
|
|
|
Console.WriteLine($"User Input: {userInput}");
|
|
|
|
[KernelFunction]
|
|
[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.";
|
|
|
|
await SKAgent();
|
|
await AFAgent();
|
|
|
|
async Task SKAgent()
|
|
{
|
|
OpenAIResponseAgent agent = new(new AzureOpenAIClient(new Uri(endpoint), new AzureCliCredential())
|
|
.GetOpenAIResponseClient(deploymentName));
|
|
|
|
// Initialize plugin and add to the agent's Kernel (same as direct Kernel usage).
|
|
agent.Kernel.Plugins.Add(KernelPluginFactory.CreateFromFunctions("KernelPluginName", [KernelFunctionFactory.CreateFromMethod(GetWeather)]));
|
|
|
|
Console.WriteLine("\n=== SK Agent Response ===\n");
|
|
|
|
await foreach (ChatMessageContent responseItem in agent.InvokeAsync(userInput))
|
|
{
|
|
if (!string.IsNullOrWhiteSpace(responseItem.Content))
|
|
{
|
|
Console.WriteLine(responseItem);
|
|
}
|
|
}
|
|
}
|
|
|
|
async Task AFAgent()
|
|
{
|
|
var agent = new AzureOpenAIClient(new Uri(endpoint), new AzureCliCredential())
|
|
.GetChatClient(deploymentName)
|
|
.CreateAIAgent(instructions: "You are a helpful assistant", tools: [AIFunctionFactory.Create(GetWeather)]);
|
|
|
|
Console.WriteLine("\n=== AF Agent Response ===\n");
|
|
|
|
var result = await agent.RunAsync(userInput);
|
|
Console.WriteLine(result);
|
|
}
|