Creates a new vector index in a vector bucket.
Configuration block for the operation.
supabase.storage.vectors
.from("vectors-bucket")
.createIndex {
indexName = "my-index"
dimension = 128
distanceMetric = DistanceMetric.COSINE
dataType = VectorDataType.FLOAT32
}