Skip to main content

Documentation Index

Fetch the complete documentation index at: https://upstash-fix-issues-on-docs.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Used to delete vectors with array of IDs

Arguments

IDs
string[] | number[]
required
The IDs of the vectors you want to delete.

Response

delete
number
required
The number of the deleted vectors.
const responseDelete = await index.delete(["2", "3"]);
//{ deleted: 2}