UNPKG

@vectorize-io/vectorize-client

Version:
28 lines (27 loc) 1.18 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. */ import type { Anthropic } from './Anthropic'; import type { Bedrock } from './Bedrock'; import type { Groq } from './Groq'; import type { Openai } from './Openai'; import type { Vertex } from './Vertex'; import type { Voyage } from './Voyage'; /** * @type CreateAIPlatformConnectorRequest * * @export */ export type CreateAIPlatformConnectorRequest = Anthropic | Bedrock | Groq | Openai | Vertex | Voyage; export declare function CreateAIPlatformConnectorRequestFromJSON(json: any): CreateAIPlatformConnectorRequest; export declare function CreateAIPlatformConnectorRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateAIPlatformConnectorRequest; export declare function CreateAIPlatformConnectorRequestToJSON(json: any): any; export declare function CreateAIPlatformConnectorRequestToJSONTyped(value?: CreateAIPlatformConnectorRequest | null, ignoreDiscriminator?: boolean): any;