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.
Deletion options (bucket and index names automatically set)
const index = supabase.storage.vectors.from('embeddings-prod').index('documents-openai')
await index.deleteVectors({
keys: ['doc-1', 'doc-2', 'doc-3']
})