/** * Athena API * REST API for the Athena system * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Optional external file URL to pass directly to the AI in this message. The model will read the file content as part of its response. * @export * @interface ChatRequestExternalFileUrl */ export interface ChatRequestExternalFileUrl { /** * Publicly accessible or pre-signed URL of the file * @type {string} * @memberof ChatRequestExternalFileUrl */ url: string; /** * MIME type of the file * @type {string} * @memberof ChatRequestExternalFileUrl */ mediaType: ChatRequestExternalFileUrlMediaTypeEnum; /** * File size in bytes (max 20971520) * @type {number} * @memberof ChatRequestExternalFileUrl */ size: number; } /** * @export */ export declare const ChatRequestExternalFileUrlMediaTypeEnum: { readonly ImageJpeg: "image/jpeg"; readonly ImageJpg: "image/jpg"; readonly ImagePng: "image/png"; readonly ImageWebp: "image/webp"; readonly ImageGif: "image/gif"; readonly ApplicationPdf: "application/pdf"; readonly ApplicationMsword: "application/msword"; readonly ApplicationVndOpenxmlformatsOfficedocumentWordprocessingmlDocument: "application/vnd.openxmlformats-officedocument.wordprocessingml.document"; readonly ApplicationVndMsPowerpoint: "application/vnd.ms-powerpoint"; readonly ApplicationVndOpenxmlformatsOfficedocumentPresentationmlPresentation: "application/vnd.openxmlformats-officedocument.presentationml.presentation"; readonly ApplicationVndMsExcel: "application/vnd.ms-excel"; readonly ApplicationVndOpenxmlformatsOfficedocumentSpreadsheetmlSheet: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"; readonly TextPlain: "text/plain"; readonly TextMarkdown: "text/markdown"; readonly TextCsv: "text/csv"; readonly ApplicationJson: "application/json"; readonly ApplicationRtf: "application/rtf"; }; export type ChatRequestExternalFileUrlMediaTypeEnum = typeof ChatRequestExternalFileUrlMediaTypeEnum[keyof typeof ChatRequestExternalFileUrlMediaTypeEnum]; /** * Check if a given object implements the ChatRequestExternalFileUrl interface. */ export declare function instanceOfChatRequestExternalFileUrl(value: object): value is ChatRequestExternalFileUrl; export declare function ChatRequestExternalFileUrlFromJSON(json: any): ChatRequestExternalFileUrl; export declare function ChatRequestExternalFileUrlFromJSONTyped(json: any, ignoreDiscriminator: boolean): ChatRequestExternalFileUrl; export declare function ChatRequestExternalFileUrlToJSON(json: any): ChatRequestExternalFileUrl; export declare function ChatRequestExternalFileUrlToJSONTyped(value?: ChatRequestExternalFileUrl | null, ignoreDiscriminator?: boolean): any;