UNPKG

@vectorize-io/vectorize-client

Version:
28 lines (27 loc) 1.2 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 { Anthropic1 } from './Anthropic1'; import type { Bedrock1 } from './Bedrock1'; import type { Groq1 } from './Groq1'; import type { Openai1 } from './Openai1'; import type { Vertex1 } from './Vertex1'; import type { Voyage1 } from './Voyage1'; /** * @type UpdateAIPlatformConnectorRequest * * @export */ export type UpdateAIPlatformConnectorRequest = Anthropic1 | Bedrock1 | Groq1 | Openai1 | Vertex1 | Voyage1; export declare function UpdateAIPlatformConnectorRequestFromJSON(json: any): UpdateAIPlatformConnectorRequest; export declare function UpdateAIPlatformConnectorRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateAIPlatformConnectorRequest; export declare function UpdateAIPlatformConnectorRequestToJSON(json: any): any; export declare function UpdateAIPlatformConnectorRequestToJSONTyped(value?: UpdateAIPlatformConnectorRequest | null, ignoreDiscriminator?: boolean): any;