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

    Interface ChatStore

    interface ChatStore {
        api?: string;
        maxSteps?: number;
        chats?: Record<string, any>;
        messageMetadataSchema?: any;
        metadata?: Record<string, any>;
        streamProtocol?: "data" | "text";
        credentials?: RequestCredentials;
        headers?: Record<string, string>;
        body?: Record<string, any>;
        generateId?: () => string;
        [key: string]: any;
    }

    Indexable

    • [key: string]: any
    Index

    Properties

    api?: string
    maxSteps?: number
    chats?: Record<string, any>
    messageMetadataSchema?: any
    metadata?: Record<string, any>
    streamProtocol?: "data" | "text"
    credentials?: RequestCredentials
    headers?: Record<string, string>
    body?: Record<string, any>
    generateId?: () => string