Member Junction
    Preparing search index...

    A single vector provided to ClusteringService.RunClustering().

    The caller is responsible for fetching/building these vectors from whatever data source is appropriate (database, vector index, API, etc.).

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

    Properties

    Key: string

    Unique key identifying this vector (e.g., a record ID).

    Label?: string

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

    Metadata?: Record<string, unknown>

    Arbitrary metadata surfaced in tooltips and click handlers.

    Vector: number[]

    The raw embedding / feature vector.