File size: 474 Bytes
ab9b7a8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from pymilvus import MilvusClient, connections

CLUSTER_ENDPOINT = "https://in03-875693e98e705a1.api.gcp-us-west1.zillizcloud.com"
TOKEN = "ee74ec4f760451b2c0602c784343318402c12b4cceadd34344f0290884ab537c63f1ec14df031f07c968105b162e43eac9ac310f"

def create_client():
    connections.connect(
        "default",
        uri=CLUSTER_ENDPOINT,
        token=TOKEN
    )

    client = MilvusClient(
        uri=CLUSTER_ENDPOINT,
        token=TOKEN
    )
    
    return client