From 6ef4ffd643285a27afccdbc6bda6843c7f8c8d79 Mon Sep 17 00:00:00 2001 From: Christoph Auer <60343111+cau-git@users.noreply.github.com> Date: Mon, 1 Dec 2025 19:44:16 +0100 Subject: [PATCH] fix: InputFormat.IMAGE must have correct pipeline (#2707) Signed-off-by: Christoph Auer --- docling/document_converter.py | 1 + 1 file changed, 1 insertion(+) diff --git a/docling/document_converter.py b/docling/document_converter.py index 709c8b90..2a75b29e 100644 --- a/docling/document_converter.py +++ b/docling/document_converter.py @@ -205,6 +205,7 @@ class DocumentConverter: ) # Convert to ImageFormatOption while preserving pipeline and backend options normalized_format_options[format] = ImageFormatOption( + pipeline_cls=option.pipeline_cls, pipeline_options=option.pipeline_options, backend_options=option.backend_options, )