mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
* skeleton * wip * rename + fix tests * implement workflow tests * fix comments * Update dotnet/src/Microsoft.Agents.AI.Hosting/HostApplicationBuilderWorkflowExtensions.cs Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * fixes * fix worfklow build logic * rollback + new overload on workflow builder * address PR comments * :) --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
39 lines
1.8 KiB
C#
39 lines
1.8 KiB
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
using Microsoft.Agents.AI.Workflows;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
namespace Microsoft.Agents.AI.Hosting;
|
|
|
|
/// <summary>
|
|
/// Provides extension methods for <see cref="IHostedWorkflowBuilder"/> to enable additional workflow configuration scenarios.
|
|
/// </summary>
|
|
public static class HostedWorkflowBuilderExtensions
|
|
{
|
|
/// <summary>
|
|
/// Registers the workflow as an AI agent in the dependency injection container.
|
|
/// </summary>
|
|
/// <param name="builder">The <see cref="IHostedWorkflowBuilder"/> instance to extend.</param>
|
|
/// <returns>An <see cref="IHostedAgentBuilder"/> that can be used to further configure the agent.</returns>
|
|
public static IHostedAgentBuilder AddAsAIAgent(this IHostedWorkflowBuilder builder)
|
|
=> builder.AddAsAIAgent(name: null);
|
|
|
|
/// <summary>
|
|
/// Registers the workflow as an AI agent in the dependency injection container.
|
|
/// </summary>
|
|
/// <param name="builder">The <see cref="IHostedWorkflowBuilder"/> instance to extend.</param>
|
|
/// <param name="name">The optional name for the AI agent. If not specified, the workflow name is used.</param>
|
|
/// <returns>An <see cref="IHostedAgentBuilder"/> that can be used to further configure the agent.</returns>
|
|
public static IHostedAgentBuilder AddAsAIAgent(this IHostedWorkflowBuilder builder, string? name)
|
|
{
|
|
var agentName = name ?? builder.Name;
|
|
return builder.HostApplicationBuilder.AddAIAgent(agentName, (sp, key) =>
|
|
{
|
|
var workflow = sp.GetRequiredKeyedService<Workflow>(key);
|
|
#pragma warning disable VSTHRD002 // Avoid problematic synchronous waits
|
|
return workflow.AsAgentAsync(name: key).AsTask().GetAwaiter().GetResult();
|
|
#pragma warning restore VSTHRD002 // Avoid problematic synchronous waits
|
|
});
|
|
}
|
|
}
|