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