interface DocumentBinaryInputLoaderNodeParameters {
binaryDataKey?: string;
column?: string;
loader?:
| "csvLoader"
| "docxLoader"
| "epubLoader"
| "jsonLoader"
| "pdfLoader"
| "textLoader";
options?: {
metadata?: {
metadataValues: { name: string; value?: string }[];
};
};
pointers?: string;
separator?: string;
splitPages?: boolean;
}
Properties§
Source§readonly loader?:
| "csvLoader"
| "docxLoader"
| "epubLoader"
| "jsonLoader"
| "pdfLoader"
| "textLoader"
readonly loader?:
| "csvLoader"
| "docxLoader"
| "epubLoader"
| "jsonLoader"
| "pdfLoader"
| "textLoader"
Default: "jsonLoader"
Source§readonly options?: {
metadata?: {
metadataValues: { name: string; value?: string }[];
};
}
readonly options?: {
metadata?: {
metadataValues: { name: string; value?: string }[];
};
}
Default: {}
Name of the binary property from which to read the file buffer Default: "data"