Pinecone TypeScript SDK - v9.0.0
    Preparing search index...

    Interface DocumentSearchMatch

    A document match returned from a search operation, including the document ID, similarity score, and selected fields.

    DocumentSearchMatch

    interface DocumentSearchMatch {
        _id: string;
        _score: number | null;
        [key: string]: any;
    }

    Indexable

    • [key: string]: any
    Index
    _id: string

    The unique identifier of the matched document.

    DocumentSearchMatch

    _score: number | null

    The similarity score of the matched document. null when the score is not a finite number, which can happen for dense vectors of very large magnitude.

    DocumentSearchMatch