JavaScript: deleteVectors

Deletes vectors by keys from this index Convenience method that automatically includes bucket and index names

Public alpha: This API is part of a public alpha release and may not be available to your account type.

Parameters

Examples

Delete vectors by keys

const index = supabase.storage.vectors.from('embeddings-prod').index('documents-openai')
await index.deleteVectors({
  keys: ['doc-1', 'doc-2', 'doc-3']
})