From 6abc4d707113ae24f33bb88f446f371028ae8bb4 Mon Sep 17 00:00:00 2001 From: Peter Staar Date: Tue, 17 Dec 2024 14:17:30 +0100 Subject: [PATCH] added the new label comment_section in the groups Signed-off-by: Peter Staar --- docling_core/types/doc/labels.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docling_core/types/doc/labels.py b/docling_core/types/doc/labels.py index 60179c47..b77ee57c 100644 --- a/docling_core/types/doc/labels.py +++ b/docling_core/types/doc/labels.py @@ -48,7 +48,8 @@ class GroupLabel(str, Enum): SLIDE = "slide" FORM_AREA = "form_area" KEY_VALUE_AREA = "key_value_area" - + COMMENT_SECTION = "comment_section" + def __str__(self): """Get string value.""" return str(self.value)