UNPKG

@vectorize-io/vectorize-client

Version:
33 lines (32 loc) 1.06 kB
/** * Vectorize API * API for Vectorize services (Beta) * * The version of the OpenAPI document: 0.1.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Configuration for Qdrant connector * @export * @interface QDRANTConfig */ export interface QDRANTConfig { /** * Collection Name. Example: Enter collection name * @type {string} * @memberof QDRANTConfig */ collection: string; } /** * Check if a given object implements the QDRANTConfig interface. */ export declare function instanceOfQDRANTConfig(value: object): value is QDRANTConfig; export declare function QDRANTConfigFromJSON(json: any): QDRANTConfig; export declare function QDRANTConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): QDRANTConfig; export declare function QDRANTConfigToJSON(json: any): QDRANTConfig; export declare function QDRANTConfigToJSONTyped(value?: QDRANTConfig | null, ignoreDiscriminator?: boolean): any;