func (collectionClient) Create(
ctx context.Context,
datasetID uuid.UUID,
collectionName string,
) (*datasets.Collection, error)
Create a collection in the dataset.
Parameters
The name of the collection
Returns
The created collection object.
collection, err := client.Collections.Create(ctx,
datasetID,
"My-collection",
)