11 lines
199 B
Python
11 lines
199 B
Python
from pymilvus import MilvusClient
|
|
|
|
client = MilvusClient(
|
|
uri="http://10.1.1.240:19530",
|
|
token="root:Milvus",
|
|
db_name="mixi"
|
|
)
|
|
client.load_collection(
|
|
collection_name="mixi_outfit"
|
|
)
|