@karmaniverous/jeeves-watcher
    Preparing search index...

    Interface VectorPoint

    A point to upsert into the vector store.

    interface VectorPoint {
        id: string;
        payload: Record<string, unknown>;
        vector: number[];
    }
    Index

    Properties

    Properties

    id: string

    The point ID.

    payload: Record<string, unknown>

    The payload metadata.

    vector: number[]

    The embedding vector.