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

    Type Alias FetchResponse<T>

    The response from Index.fetch

    type FetchResponse<T extends RecordMetadata = RecordMetadata> = {
        namespace: string;
        records: { [key: string]: PineconeRecord<T> };
        usage?: OperationUsage;
    }

    Type Parameters

    Index
    namespace: string

    The namespace where records were fetched.

    records: { [key: string]: PineconeRecord<T> }

    A map of fetched records, keyed by record id.

    The usage information for the fetch operation.