Table of Contents

Class AgentApplicationBuilder

Namespace
Microsoft.AutoGen.Core
Assembly
Microsoft.AutoGen.Core.dll
public sealed class AgentApplicationBuilder
Inheritance
AgentApplicationBuilder
Inherited Members

Constructors

AgentApplicationBuilder(IHostApplicationBuilder)

public AgentApplicationBuilder(IHostApplicationBuilder builder)

Parameters

builder IHostApplicationBuilder

Methods

AddAgent(string, Type)

public AgentApplicationBuilder AddAgent(string typeName, Type agentType)

Parameters

typeName string
agentType Type

Returns

AgentApplicationBuilder

AddAgent<TAgent>(string)

public AgentApplicationBuilder AddAgent<TAgent>(string typeName) where TAgent : Agent

Parameters

typeName string

Returns

AgentApplicationBuilder

Type Parameters

TAgent