Create and manage vector collections in the Python SDK.
collection = sv.collection( "my-collection", dimensions=1536, metric="cosine" # "cosine" | "euclidean" | "dot_product" )
stats = collection.stats() print(f"Vectors: {stats.vector_count}") print(f"Dimensions: {stats.dimensions}")