interface MistralAiNodeParameters {
binaryProperty?: string;
documentType?: "document_url" | "image_url";
inputType?: "url" | "binary";
model?: "mistral-ocr-latest";
operation?: "extractText";
options?: {
batch?: boolean;
batchSize: number;
deleteFiles?: boolean;
};
resource?: "document";
url?: string;
}
Properties§
§
§
§
§
§
§
§
§
readonly binary Property?: string
readonly document Type?: "document_url" | "image_url"
The type of document to process Default: "document_url"
readonly input Type?: "url" | "binary"
How the document will be provided Default: "binary"
readonly model?: "mistral-ocr-latest"
The OCR model to use Default: "mistral-ocr-latest"
readonly operation?: "extractText"
Default: "extractText"
readonly options?: { ... }
Default: {}
readonly resource?: "document"
Default: "document"
readonly url?: string
URL of the document or image to process
Name of the input binary field that contains the file to process Default: "data"