UNPKG

@vectorize-io/vectorize-client

Version:
33 lines (32 loc) 1.08 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. */ /** * Authentication configuration for Groq * @export * @interface GROQAuthConfig */ export interface GROQAuthConfig { /** * API Key. Example: Enter your Groq API Key * @type {string} * @memberof GROQAuthConfig */ key: string; } /** * Check if a given object implements the GROQAuthConfig interface. */ export declare function instanceOfGROQAuthConfig(value: object): value is GROQAuthConfig; export declare function GROQAuthConfigFromJSON(json: any): GROQAuthConfig; export declare function GROQAuthConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): GROQAuthConfig; export declare function GROQAuthConfigToJSON(json: any): GROQAuthConfig; export declare function GROQAuthConfigToJSONTyped(value?: GROQAuthConfig | null, ignoreDiscriminator?: boolean): any;