import { DcContentType } from "./ChatBot.js"; export interface DcDocumentChunkMetaData { /** * The page of the PDF document */ page?: string; /** * The url of the webpage or YouTube video */ url?: string; /** * The title of the webpage or YouTube video */ title?: string; /** * The author of the YouTube video */ author?: string; /** * The line of a CSV file. */ line?: number; /** * The file extension of the document, if applicable. */ extension?: string; /** * The type of the document. */ sourceType?: DcContentType; }