@vivantel/virage-core
    Preparing search index...

    Interface EmbeddingsMeta

    Metadata stored in the embeddings SQLite DB to detect model/store changes across runs.

    interface EmbeddingsMeta {
        createdAt: number;
        model?: string;
        providerDimensions: number;
        providerName: string;
        schemaVersion: number;
        updatedAt: number;
        vectorStoreName?: string;
    }
    Index
    createdAt: number
    model?: string

    Discriminator: if model changes, all embeddings are invalid.

    providerDimensions: number

    Discriminator: if dimensions change, all embeddings are invalid.

    providerName: string

    Informational only — not used for mismatch detection.

    schemaVersion: number
    updatedAt: number
    vectorStoreName?: string

    Name of the vector store last written to. If changed, triggers a force re-upload.