Interface CustomAgentDescription

Describes a custom agent with its properties

interface CustomAgentDescription {
    defaultLLM: string;
    description: string;
    id: string;
    name: string;
    prompt: string;
}

Properties

defaultLLM: string

The default large language model to use with this agent

description: string

Description of the agent's purpose and capabilities

id: string

Unique identifier for this agent

name: string

Display name for the agent

prompt: string

The prompt text for this agent