Class: Google::Cloud::DocumentAI::V1::ProcessOptions::LayoutConfig
- Inherits:
-
Object
- Object
- Google::Cloud::DocumentAI::V1::ProcessOptions::LayoutConfig
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/documentai/v1/document_processor_service.rb
Overview
Serving config for layout parser processor.
Defined Under Namespace
Classes: ChunkingConfig
Instance Attribute Summary collapse
-
#chunking_config ⇒ ::Google::Cloud::DocumentAI::V1::ProcessOptions::LayoutConfig::ChunkingConfig
Optional.
Instance Attribute Details
#chunking_config ⇒ ::Google::Cloud::DocumentAI::V1::ProcessOptions::LayoutConfig::ChunkingConfig
Returns Optional. Config for chunking in layout parser processor.
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 |
# File 'proto_docs/google/cloud/documentai/v1/document_processor_service.rb', line 58 class LayoutConfig include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Serving config for chunking. # @!attribute [rw] chunk_size # @return [::Integer] # Optional. The chunk sizes to use when splitting documents, in order of # level. # @!attribute [rw] include_ancestor_headings # @return [::Boolean] # Optional. Whether or not to include ancestor headings when splitting. class ChunkingConfig include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |