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

    Type Alias UpsertOptions<T>

    Options for upserting records to the index.

    type UpsertOptions<T extends RecordMetadata = RecordMetadata> = {
        namespace?: string;
        records: PineconeRecord<T>[];
    }

    Type Parameters

    Index
    namespace?: string

    The namespace to upsert into. If not specified, uses the namespace configured on the Index.

    records: PineconeRecord<T>[]

    The records to upsert