Table of Contents

Struct AgentMetadata

Namespace
Microsoft.AutoGen.Contracts
Assembly
Microsoft.AutoGen.Contracts.dll

Represents metadata associated with an agent, including its type, unique key, and description.

public struct AgentMetadata
Inherited Members

Constructors

AgentMetadata(string, string, string)

Represents metadata associated with an agent, including its type, unique key, and description.

public AgentMetadata(string type, string key, string description)

Parameters

type string
key string
description string

Properties

Description

A brief description of the agent's purpose or functionality.

public string Description { readonly get; set; }

Property Value

string

Key

A unique key identifying the agent instance. Strings may only be composed of alphanumeric letters (a-z, 0-9), or underscores (_).

public string Key { readonly get; set; }

Property Value

string

Type

An identifier that associates an agent with a specific factory function. Strings may only be composed of alphanumeric letters (a-z, 0-9), or underscores (_).

public string Type { readonly get; set; }

Property Value

string