from pymilvus import connections, CollectionSchema, Collection from applications.utils.milvus.field import fields connections.connect("default", host="localhost", port="19530") schema = CollectionSchema( fields, description="Chunk multi-vector embeddings with metadata" ) milvus_collection = Collection(name="chunk_multi_embeddings", schema=schema) __all__ = ["milvus_collection"]