Used to add new vectors or update an existing vector.

You can only upsert vectors with same dimension count(size) as your index.

Arguments

There are two ways to use the upsert method. You can either create the vectors on your own and pass them directly. Or you can pass the data and create the embeddings using Upstash Embedding. The possible payloads are:

VectorPayload
Vector | Vector[]
required
Namespace
{ namespace?: string }

Namespace to upsert to. If not set, default namespace is used.

OR

DataPayload
Data | Data[]
required
Namespace
{ namespace?: string }

Namespace to upsert to. If not set, default namespace is used.

Response

'Success' on successful operation.