enquire-mcp API reference - v4.0.0-rc.7
    Preparing search index...

    Interface EmbedUpsertResult

    Result of one atomic source replacement in the embedding store.

    interface EmbedUpsertResult {
        newIds: number[];
        newVectors: Float32Array<ArrayBufferLike>[];
        oldIds: number[];
    }
    Index
    newIds: number[]

    Fresh AUTOINCREMENT labels, in input-row order.

    newVectors: Float32Array<ArrayBufferLike>[]

    DB-canonical vectors in the same order as newIds. For int8 storage these are decoded from the exact quantized BLOB, so a live HNSW update and a restart rebuild consume identical numeric input.

    oldIds: number[]

    Native labels retired by the replacement.