Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -147,9 +147,15 @@ class LayoutConfig(proto.Message):
enable_image_annotation (bool):
Optional. Whether to include image
annotations in layout parser response.
enable_image_extraction (bool):
Optional. Whether to extract images in layout
parser response.
enable_llm_layout_parsing (bool):
Optional. Whether to refine PDF layout using
LLM.
enable_table_annotation (bool):
Optional. Whether to include table
annotations in layout parser response.
"""

class ChunkingConfig(proto.Message):
Expand Down Expand Up @@ -208,10 +214,18 @@ class ChunkingConfig(proto.Message):
proto.BOOL,
number=4,
)
enable_image_extraction: bool = proto.Field(
proto.BOOL,
number=7,
)
enable_llm_layout_parsing: bool = proto.Field(
proto.BOOL,
number=5,
)
enable_table_annotation: bool = proto.Field(
proto.BOOL,
number=6,
)

class IndividualPageSelector(proto.Message):
r"""A list of individual page numbers.
Expand Down