export type CreateDocumentDto = { documentUrl: string; /** * The document's name */ name: string; /** * The size of the documents text segments */ chunkSize?: number; /** * The delimiter used to separate the document into text segments. If left blank, only chunkSize will be used. */ delimiter?: string; /** * The visibility status of the document */ visibility?: CreateDocumentDto.visibility; }; export declare namespace CreateDocumentDto { /** * The visibility status of the document */ enum visibility { PUBLIC = "PUBLIC", PRIVATE = "PRIVATE" } }