/** * This file was auto-generated by Fern from our API Definition. */ import * as fs from "fs"; /** * @example * { * file: fs.createReadStream("/path/to/your/file") * } */ export interface BodyCreateFileDocumentV1ConvaiKnowledgeBaseFilePost { file: File | fs.ReadStream | Blob; /** A custom, human-readable name for the document. */ name?: string; }