Pinecone TypeScript SDK - v8.2.0
    Preparing search index...

    Interface PreviewDocumentSearchMatch

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

    DocumentSearchMatch

    interface PreviewDocumentSearchMatch {
        _id: string;
        _score: number;
        [key: string]: any;
    }

    Indexable

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

    The unique identifier of the matched document.

    DocumentSearchMatch

    _score: number

    The similarity score of the matched document.

    DocumentSearchMatch