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

    Interface SearchResult

    A search result from the vector store.

    interface SearchResult {
        id: string;
        payload: Record<string, unknown>;
        score: number;
    }
    Index

    Properties

    Properties

    id: string

    The point ID.

    payload: Record<string, unknown>

    The payload metadata.

    score: number

    The similarity score.