使用langchain_community对Milvus向量数据库创建collection时,为什么连接到的都是default数据库,如果使用其他的数据库,代码该怎么写?
from langchain_community.vectorstores import Milvus
vector_store = Milvus(
embedding_function=embedding_model,
collection_name=milvus_config["collection_name"],
consistency_level="Bounded",
connection_args={"host": milvus_config["host"], "port": milvus_config["port"]},
)