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

    Interface AgentContext

    interface AgentContext {
        messages: EnhancedMessage[];
        task: string;
        goal: string;
        constraints: string[];
        tools: {
            name: string;
            description: string;
            parameters: any;
            handler: (args: any) => Promise<any>;
        }[];
        memory: Record<string, any>;
        variables: Record<string, any>;
        preferredModels: string[];
        costLimit: number;
        timeLimit: number;
    }
    Index

    Properties

    messages: EnhancedMessage[]
    task: string
    goal: string
    constraints: string[]
    tools: {
        name: string;
        description: string;
        parameters: any;
        handler: (args: any) => Promise<any>;
    }[]
    memory: Record<string, any>
    variables: Record<string, any>
    preferredModels: string[]
    costLimit: number
    timeLimit: number