Files
agent-framework/dotnet/src/Microsoft.Agents.AI.Hosting/IHostedAgentBuilder.cs
T
Korolev DmitryandGitHub 72c391bc08 .NET: Refactor A2A and AIAgent hosting extensions (#1625)
* a2a reformat

* and refactor extensions on serviceCollection

* units

* fix build

* add remark for agentcard overloads
2025-10-23 17:43:48 +00:00

22 lines
551 B
C#

// Copyright (c) Microsoft. All rights reserved.
using Microsoft.Extensions.DependencyInjection;
namespace Microsoft.Agents.AI.Hosting;
/// <summary>
/// Represents a builder for configuring AI agents within a hosting environment.
/// </summary>
public interface IHostedAgentBuilder
{
/// <summary>
/// Gets the name of the agent being configured.
/// </summary>
string Name { get; }
/// <summary>
/// Gets the service collection for configuration.
/// </summary>
IServiceCollection ServiceCollection { get; }
}