69 lines
2.4 KiB
C#
69 lines
2.4 KiB
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
using Azure.AI.Agents.Persistent;
|
|
using Microsoft.SemanticKernel;
|
|
using Microsoft.SemanticKernel.Agents;
|
|
using Microsoft.SemanticKernel.Agents.AzureAI;
|
|
using Resources;
|
|
|
|
namespace GettingStarted.AzureAgents;
|
|
|
|
/// <summary>
|
|
/// This example demonstrates similarity between using <see cref="AzureAIAgent"/>
|
|
/// and other agent types.
|
|
/// </summary>
|
|
public class Step01_AzureAIAgent(ITestOutputHelper output) : BaseAzureAgentTest(output)
|
|
{
|
|
[Fact]
|
|
public async Task UseTemplateForAzureAgent()
|
|
{
|
|
// Define the agent
|
|
string generateStoryYaml = EmbeddedResource.Read("GenerateStory.yaml");
|
|
PromptTemplateConfig templateConfig = KernelFunctionYaml.ToPromptTemplateConfig(generateStoryYaml);
|
|
// Instructions, Name and Description properties defined via the PromptTemplateConfig.
|
|
PersistentAgent definition = await this.Client.Administration.CreateAgentAsync(TestConfiguration.AzureAI.ChatModelId, templateConfig.Name, templateConfig.Description, templateConfig.Template);
|
|
AzureAIAgent agent = new(
|
|
definition,
|
|
this.Client,
|
|
templateFactory: new KernelPromptTemplateFactory(),
|
|
templateFormat: PromptTemplateConfig.SemanticKernelTemplateFormat)
|
|
{
|
|
Arguments = new()
|
|
{
|
|
{ "topic", "Dog" },
|
|
{ "length", "3" }
|
|
}
|
|
};
|
|
|
|
// Create a thread for the agent conversation.
|
|
AgentThread thread = new AzureAIAgentThread(this.Client, metadata: SampleMetadata);
|
|
|
|
try
|
|
{
|
|
// Invoke the agent with the default arguments.
|
|
await InvokeAgentAsync();
|
|
|
|
// Invoke the agent with the override arguments.
|
|
await InvokeAgentAsync(
|
|
new()
|
|
{
|
|
{ "topic", "Cat" },
|
|
{ "length", "3" },
|
|
});
|
|
}
|
|
finally
|
|
{
|
|
await thread.DeleteAsync();
|
|
await this.Client.Administration.DeleteAgentAsync(agent.Id);
|
|
}
|
|
|
|
// Local function to invoke agent and display the response.
|
|
async Task InvokeAgentAsync(KernelArguments? arguments = null)
|
|
{
|
|
await foreach (ChatMessageContent response in agent.InvokeAsync(thread, new() { KernelArguments = arguments }))
|
|
{
|
|
WriteAgentChatMessage(response);
|
|
}
|
|
}
|
|
}
|
|
}
|