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

    Type Alias SearchRecordsOptions

    Options for searching records within a specific namespace.

    type SearchRecordsOptions = {
        fields?: string[];
        namespace?: string;
        query: SearchRecordsQuery;
        rerank?: SearchRecordsRerank;
    }
    Index
    fields?: string[]

    The fields to return in the search results. If not specified, the response will include all fields.

    namespace?: string

    The namespace to search in. If not specified, uses the namespace configured on the Index.

    The query to use for searching.

    Parameters to rerank the initial search results.