interface DocumentDefaultDataLoaderNodeParameters {
binaryDataKey?: string;
binaryMode?: "allInputData" | "specificField";
dataType?: "json" | "binary";
jsonData?: string;
jsonMode?: "allInputData" | "expressionData";
loader?:
| "auto"
| "csvLoader"
| "docxLoader"
| "epubLoader"
| "jsonLoader"
| "pdfLoader"
| "textLoader";
options?: {
column?: string;
metadata?: {
metadataValues: { name: string; value?: string }[];
};
pointers?: string;
separator?: string;
splitPages?: boolean;
};
textSplittingMode?: "custom"
| "simple";
}
Properties§
Source§readonly json Data?: string
readonly json Data?: string
Drag and drop fields from the input pane, or use an expression Type options: {"rows":6}
Source§readonly loader?:
| "auto"
| "csvLoader"
| "docxLoader"
| "epubLoader"
| "jsonLoader"
| "pdfLoader"
| "textLoader"
readonly loader?:
| "auto"
| "csvLoader"
| "docxLoader"
| "epubLoader"
| "jsonLoader"
| "pdfLoader"
| "textLoader"
Default: "auto"
The name of the field in the agent or chain’s input that contains the binary file to be processed Default: "data"