Struct AgentMetadata
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
Properties
Description
A brief description of the agent's purpose or functionality.
public string Description { readonly get; set; }
Property Value
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
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; }