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§
§§§§§§§
readonly binary Data Key?: string§
readonly binary Mode?: "allInputData" | "specificField"Default: "allInputData"
readonly data Type?: "json" | "binary"Default: "json"
readonly json Data?: stringDrag and drop fields from the input pane, or use an expression Type options: {"rows":6}
readonly json Mode?: "allInputData" | "expressionData"Default: "allInputData"
readonly loader?:
| "auto"
| "csvLoader"
| "docxLoader"
| "epubLoader"
| "jsonLoader"
| "pdfLoader"
| "textLoader"Default: "auto"
readonly options?: { ... }Default: {}
readonly text Splitting Mode?: "custom" | "simple"Default: "simple"
The name of the field in the agent or chain’s input that contains the binary file to be processed Default: "data"