Member Junction
    Preparing search index...

    A single vector handed to the engine for clustering. Produced by an IClusterVectorSource adapter.

    interface ClusterInputVector {
        Key: string;
        Label?: string;
        Metadata?: Record<string, unknown>;
        Vector: number[];
    }
    Index

    Properties

    Key: string

    Unique key identifying this vector (typically an entity record ID).

    Label?: string

    Optional display label for this point (defaults to Key if omitted).

    Metadata?: Record<string, unknown>

    Arbitrary metadata surfaced in tooltips / drilldown.

    Vector: number[]

    The raw embedding / feature vector.