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;
}
Name of the input binary field that contains the file to process Default: "data"