From 290975385608213740879a4db29d8bee4aeb8ac3 Mon Sep 17 00:00:00 2001 From: Michele Dolfi Date: Fri, 7 Feb 2025 14:00:22 +0100 Subject: [PATCH] fix name of cli argument Signed-off-by: Michele Dolfi --- docling/cli/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docling/cli/main.py b/docling/cli/main.py index 6a4c0719..e2bc0dd6 100644 --- a/docling/cli/main.py +++ b/docling/cli/main.py @@ -226,7 +226,7 @@ def convert( help="Enable the picture classification enrichment model in the pipeline.", ), ] = False, - enrich_picture_desc: Annotated[ + enrich_picture_description: Annotated[ bool, typer.Option(..., help="Enable the picture description model in the pipeline."), ] = False, @@ -386,7 +386,7 @@ def convert( do_table_structure=True, do_code_enrichment=enrich_code, do_formula_enrichment=enrich_formula, - do_picture_description=enrich_picture_desc, + do_picture_description=enrich_picture_description, do_picture_classification=enrich_picture_classes, document_timeout=document_timeout, )