@jataware/beaker-client
    Preparing search index...

    Interface IChatHistory

    interface IChatHistory {
        message_token_count?: number;
        model?: IChatModel;
        overhead_token_count?: number;
        records: RecordType[];
        summarization_threshold?: number;
        summary_token_count?: number;
        systemMessage?: string;
        systemMessageRecord?: RecordType;
        systemPreambleRecord?: RecordType;
        token_estimate?: number;
        toolTokenUsageEstimate?: number;
        userPreambleRecord?: RecordType;
    }

    Implemented by

    Index
    message_token_count?: number
    model?: IChatModel
    overhead_token_count?: number
    records: RecordType[]
    summarization_threshold?: number
    summary_token_count?: number
    systemMessage?: string
    systemMessageRecord?: RecordType
    systemPreambleRecord?: RecordType
    token_estimate?: number
    toolTokenUsageEstimate?: number
    userPreambleRecord?: RecordType