UNPKG

@vectorize-io/vectorize-client

Version:
39 lines (38 loc) 1.22 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 Pinecone connector * @export * @interface PINECONEConfig */ export interface PINECONEConfig { /** * Index Name. Example: Enter index name * @type {string} * @memberof PINECONEConfig */ index: string; /** * Namespace. Example: Enter namespace * @type {string} * @memberof PINECONEConfig */ namespace?: string; } /** * Check if a given object implements the PINECONEConfig interface. */ export declare function instanceOfPINECONEConfig(value: object): value is PINECONEConfig; export declare function PINECONEConfigFromJSON(json: any): PINECONEConfig; export declare function PINECONEConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): PINECONEConfig; export declare function PINECONEConfigToJSON(json: any): PINECONEConfig; export declare function PINECONEConfigToJSONTyped(value?: PINECONEConfig | null, ignoreDiscriminator?: boolean): any;