1. ๐ Name and Dimension
import pyenvector as ev
# Assume the client has already been initialized with ev.init()
# Create a new index named 'product-vectors' for 768-dimensional vectors
ev.create_index(index_name="product-vectors", dim=768)
# You can now create another, separate index with a different name and dimension
ev.create_index(index_name="image-embeddings", dim=1024)Last updated

