mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
41 lines
1.9 KiB
C#
41 lines
1.9 KiB
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
// This sample demonstrates how to integrate AI agents into a workflow pipeline.
|
|
// Three translation agents are connected sequentially to create a translation chain:
|
|
// English → French → Spanish → English, showing how agents can be composed as workflow executors.
|
|
|
|
using Azure.AI.AgentServer.AgentFramework.Extensions;
|
|
using Azure.AI.OpenAI;
|
|
using Azure.Identity;
|
|
using Microsoft.Agents.AI;
|
|
using Microsoft.Agents.AI.Workflows;
|
|
using Microsoft.Extensions.AI;
|
|
|
|
// Set up the Azure OpenAI client
|
|
var endpoint = Environment.GetEnvironmentVariable("AZURE_OPENAI_ENDPOINT") ?? throw new InvalidOperationException("AZURE_OPENAI_ENDPOINT is not set.");
|
|
var deploymentName = Environment.GetEnvironmentVariable("AZURE_OPENAI_DEPLOYMENT_NAME") ?? "gpt-4o-mini";
|
|
|
|
// 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.
|
|
IChatClient chatClient = new AzureOpenAIClient(new Uri(endpoint), new DefaultAzureCredential())
|
|
.GetChatClient(deploymentName)
|
|
.AsIChatClient();
|
|
|
|
// Create agents
|
|
AIAgent frenchAgent = GetTranslationAgent("French", chatClient);
|
|
AIAgent spanishAgent = GetTranslationAgent("Spanish", chatClient);
|
|
AIAgent englishAgent = GetTranslationAgent("English", chatClient);
|
|
|
|
// Build the workflow and turn it into an agent
|
|
AIAgent agent = new WorkflowBuilder(frenchAgent)
|
|
.AddEdge(frenchAgent, spanishAgent)
|
|
.AddEdge(spanishAgent, englishAgent)
|
|
.Build()
|
|
.AsAgent();
|
|
|
|
await agent.RunAIAgentAsync();
|
|
|
|
static ChatClientAgent GetTranslationAgent(string targetLanguage, IChatClient chatClient) =>
|
|
new(chatClient, $"You are a translation assistant that translates the provided text to {targetLanguage}.");
|