mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
* a2a reformat * and refactor extensions on serviceCollection * units * fix build * add remark for agentcard overloads
22 lines
551 B
C#
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; }
|
|
}
|