@conciergus/chat - v0.3.1
    Preparing search index...

    Interface AgentInfo

    Enhanced Conversation Types for Multi-Agent Chat Persistence Supports multi-agent conversations, agent handoffs, and comprehensive metadata tracking

    interface AgentInfo {
        id: string;
        name: string;
        type: string;
        capabilities: string[];
        model?: string;
        metadata?: Record<string, any>;
    }
    Index

    Properties

    id: string

    Unique identifier for the agent

    name: string

    Display name of the agent

    type: string

    Agent type/role (e.g., 'general', 'code', 'research', 'creative')

    capabilities: string[]

    Agent capabilities and specializations

    model?: string

    Agent model configuration

    metadata?: Record<string, any>

    Custom agent metadata