Interface for the arguments required by the Milvus class constructor.

interface MilvusLibArgs {
    autoId?: boolean;
    clientConfig?: ClientConfig;
    collectionName?: string;
    partitionName?: string;
    password?: string;
    primaryField?: string;
    ssl?: boolean;
    textField?: string;
    textFieldMaxLength?: number;
    url?: string;
    username?: string;
    vectorField?: string;
}

Properties

autoId?: boolean
clientConfig?: ClientConfig
collectionName?: string
partitionName?: string
password?: string
primaryField?: string
ssl?: boolean
textField?: string
textFieldMaxLength?: number
url?: string
username?: string
vectorField?: string

Generated using TypeDoc