/** * This file was auto-generated by Fern from our API Definition. */ import * as Vectara from "../../../../index"; /** * @example * {} */ export interface UploadFileRequest { /** * The API will make a best effort to complete the request in the specified seconds or time out. */ requestTimeout?: number; /** * The API will make a best effort to complete the request in the specified milliseconds or time out. */ requestTimeoutMillis?: number; /** Arbitrary object that will be attached as document metadata to the extracted document. */ metadata?: Record; chunkingStrategy?: Vectara.ComponentsSchemasMaxCharsChunkingStrategy; tableExtractionConfig?: Vectara.TableExtractionConfig; /** Optional multipart section to override the filename. */ filename?: string; }