Core - v1.0.0
    Preparing search index...

    Interface VectorMatch

    One result of a similarity search.

    Bayu Dwiyan Satria

    1.0.0

    1.0.0

    interface VectorMatch {
        id: string;
        metadata?: Record<string, unknown>;
        score: number;
    }
    Index
    id: string

    Id of the matched vector.

    metadata?: Record<string, unknown>

    Metadata stored with the vector, when it was requested.

    score: number

    Similarity score.