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§
§
§
§
§
§
§
§
readonly binary Data Key?: string
readonly column?: string
Column to extract from CSV
readonly loader?:
| "csvLoader"
| "docxLoader"
| "epubLoader"
| "jsonLoader"
| "pdfLoader"
| "textLoader"
Default: "jsonLoader"
readonly options?: { ... }
Default: {}
readonly pointers?: string
Pointers to extract from JSON, e.g. "/text" or "/text, /meta/title"
readonly separator?: string
Separator to use for CSV Default: ","
readonly split Pages?: boolean
Default: true
Name of the binary property from which to read the file buffer Default: "data"