Class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1DocumentProcessingConfigChunkingConfigLayoutBasedChunkingConfig
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1DocumentProcessingConfigChunkingConfigLayoutBasedChunkingConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/discoveryengine_v1alpha/classes.rb,
lib/google/apis/discoveryengine_v1alpha/representations.rb,
lib/google/apis/discoveryengine_v1alpha/representations.rb
Overview
Configuration for the layout based chunking.
Instance Attribute Summary collapse
-
#chunk_size ⇒ Fixnum
The token size limit for each chunk.
-
#include_ancestor_headings ⇒ Boolean
(also: #include_ancestor_headings?)
Whether to include appending different levels of headings to chunks from the middle of the document to prevent context loss.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1DocumentProcessingConfigChunkingConfigLayoutBasedChunkingConfig
constructor
A new instance of GoogleCloudDiscoveryengineV1DocumentProcessingConfigChunkingConfigLayoutBasedChunkingConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1DocumentProcessingConfigChunkingConfigLayoutBasedChunkingConfig
Returns a new instance of GoogleCloudDiscoveryengineV1DocumentProcessingConfigChunkingConfigLayoutBasedChunkingConfig.
1374 1375 1376 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 1374 def initialize(**args) update!(**args) end |
Instance Attribute Details
#chunk_size ⇒ Fixnum
The token size limit for each chunk. Supported values: 100-500 (inclusive).
Default value: 500.
Corresponds to the JSON property chunkSize
1365 1366 1367 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 1365 def chunk_size @chunk_size end |
#include_ancestor_headings ⇒ Boolean 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
1371 1372 1373 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 1371 def include_ancestor_headings @include_ancestor_headings end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1379 1380 1381 1382 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 1379 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 |