Member Junction
    Preparing search index...

    A single match from a colocated query.

    interface ColocatedMatch {
        id: string;
        metadata?: Record<string, string | number | boolean | string[]>;
        score: number;
        values?: number[];
    }
    Index

    Properties

    id: string

    Vector record id, stored in CompositeKey URL format to mirror the external providers.

    metadata?: Record<string, string | number | boolean | string[]>

    Stored metadata, present when includeMetadata is true.

    score: number

    Fused relevance score; higher is more relevant regardless of the underlying metric.

    values?: number[]

    Embedding values, present when includeValues is true.