Class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaDocumentProcessingConfigChunkingConfigLayoutBasedChunkingConfig

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/discoveryengine_v1beta/classes.rb,
lib/google/apis/discoveryengine_v1beta/representations.rb,
lib/google/apis/discoveryengine_v1beta/representations.rb

Overview

Configuration for the layout based chunking.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1betaDocumentProcessingConfigChunkingConfigLayoutBasedChunkingConfig

Returns a new instance of GoogleCloudDiscoveryengineV1betaDocumentProcessingConfigChunkingConfigLayoutBasedChunkingConfig.



8663
8664
8665
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 8663

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#chunk_sizeFixnum

The token size limit for each chunk. Supported values: 100-500 (inclusive). Default value: 500. Corresponds to the JSON property chunkSize

Returns:

  • (Fixnum)


8654
8655
8656
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 8654

def chunk_size
  @chunk_size
end

#include_ancestor_headingsBoolean Also known as: include_ancestor_headings?

Whether to include appending different levels of headings to chunks from the middle of the document to prevent context loss. Default value: False. Corresponds to the JSON property includeAncestorHeadings

Returns:

  • (Boolean)


8660
8661
8662
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 8660

def include_ancestor_headings
  @include_ancestor_headings
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8668
8669
8670
8671
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 8668

def update!(**args)
  @chunk_size = args[:chunk_size] if args.key?(:chunk_size)
  @include_ancestor_headings = args[:include_ancestor_headings] if args.key?(:include_ancestor_headings)
end