Inserts or updates vectors in an index.
The name of the vector bucket.
The name of the index.
List of vector objects to insert or update.
supabase.storage.vectors().from_("vectors-bucket").index("my-index").put([
{
"key": "vector-1",
"data": {"float32": [0.1, 0.2, 0.3]},
"metadata": {"category": "example"}
}
])