Table of Contents

Class AgentTypes

Namespace
FoundationaLLM.Common.Models.ResourceProviders.Agent
Assembly
FoundationaLLM.Common.dll

Contains constants for the types of resources managed by the FoundationaLLM.Agent resource provider.

public static class AgentTypes
Inheritance
AgentTypes
Inherited Members

Fields

AgentFile

Agent file.

public const string AgentFile = "agent-file"

Field Value

string

Basic

Basic agent without practical functionality. Used as base for all the other agents.

public const string Basic = "basic"

Field Value

string

KnowledgeManagement

Knowledge Management agents are best for Q&A, summarization, and reasoning over textual data.

public const string KnowledgeManagement = "knowledge-management"

Field Value

string

Tool

Tool.

public const string Tool = "tool"

Field Value

string

Workflow

Workflow.

public const string Workflow = "workflow"

Field Value

string