unified-llm-client
    Preparing search index...

    Interface PostgresSessionStoreRow<TSnapshot>

    Row shape returned by the Postgres session store.

    interface PostgresSessionStoreRow<TSnapshot> {
        created_at: string | Date;
        message_count: number;
        model: string | null;
        provider: CanonicalProvider | null;
        session_id: string;
        snapshot: TSnapshot;
        tenant_id: string;
        total_cost_usd: string | number;
        updated_at: string | Date;
    }

    Type Parameters

    • TSnapshot
    Index

    Properties

    created_at: string | Date
    message_count: number
    model: string | null
    provider: CanonicalProvider | null
    session_id: string
    snapshot: TSnapshot
    tenant_id: string
    total_cost_usd: string | number
    updated_at: string | Date