@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
33 lines (32 loc) • 1.16 kB
TypeScript
/**
* 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 Anthropic
* @export
* @interface ANTHROPICAuthConfig
*/
export interface ANTHROPICAuthConfig {
/**
* API Key. Example: Enter your Anthropic API Key
* @type {string}
* @memberof ANTHROPICAuthConfig
*/
key: string;
}
/**
* Check if a given object implements the ANTHROPICAuthConfig interface.
*/
export declare function instanceOfANTHROPICAuthConfig(value: object): value is ANTHROPICAuthConfig;
export declare function ANTHROPICAuthConfigFromJSON(json: any): ANTHROPICAuthConfig;
export declare function ANTHROPICAuthConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): ANTHROPICAuthConfig;
export declare function ANTHROPICAuthConfigToJSON(json: any): ANTHROPICAuthConfig;
export declare function ANTHROPICAuthConfigToJSONTyped(value?: ANTHROPICAuthConfig | null, ignoreDiscriminator?: boolean): any;