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

    Interface Hit

    A record whose vector values are similar to the provided search query.

    Hit

    interface Hit {
        _id: string;
        _score: number;
        fields: object;
    }
    Index
    _id: string

    The record id of the search hit.

    Hit

    _score: number

    The similarity score of the returned record.

    Hit

    fields: object

    The selected record fields associated with the search hit.

    Hit