Arguments
string[] | number[]
required
The IDs of the vectors you want to fetch.
Object
required
Response
Vector[]
required
This field is
null if no vector with the specified id is found.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
const responseDelete = await index.fetch(["2", "3"], {});
// [{ id: "2" }, { id: "3" }]
const responseDelete = await index.fetch(["2", "3"], {});
// [{ id: "2" }, null]
const responseDelete = await index.fetch(["2", "3"], {});
// [{ id: "2" }, { id: "3" }]
const responseDelete = await index.fetch(["2", "3"], {});
// [{ id: "2" }, null]
Was this page helpful?