@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
53 lines (52 loc) • 1.45 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.
*/
import type { ANTHROPICAuthConfig } from './ANTHROPICAuthConfig';
/**
*
* @export
* @interface Anthropic
*/
export interface Anthropic {
/**
* Name of the connector
* @type {string}
* @memberof Anthropic
*/
name: string;
/**
* Must be "ANTHROPIC"
* @type {string}
* @memberof Anthropic
*/
type: AnthropicTypeEnum;
/**
*
* @type {ANTHROPICAuthConfig}
* @memberof Anthropic
*/
config: ANTHROPICAuthConfig;
}
/**
* @export
*/
export declare const AnthropicTypeEnum: {
readonly Anthropic: "ANTHROPIC";
};
export type AnthropicTypeEnum = typeof AnthropicTypeEnum[keyof typeof AnthropicTypeEnum];
/**
* Check if a given object implements the Anthropic interface.
*/
export declare function instanceOfAnthropic(value: object): value is Anthropic;
export declare function AnthropicFromJSON(json: any): Anthropic;
export declare function AnthropicFromJSONTyped(json: any, ignoreDiscriminator: boolean): Anthropic;
export declare function AnthropicToJSON(json: any): Anthropic;
export declare function AnthropicToJSONTyped(value?: Anthropic | null, ignoreDiscriminator?: boolean): any;