Class: Google::Cloud::AIPlatform::V1::RagFileChunkingConfig

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/cloud/aiplatform/v1/vertex_rag_data.rb

Overview

Specifies the size and overlap of chunks for RagFiles.

Defined Under Namespace

Classes: FixedLengthChunking

Instance Attribute Summary collapse

Instance Attribute Details

#fixed_length_chunking::Google::Cloud::AIPlatform::V1::RagFileChunkingConfig::FixedLengthChunking

Returns Specifies the fixed length chunking config.

Returns:



247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
# File 'proto_docs/google/cloud/aiplatform/v1/vertex_rag_data.rb', line 247

class RagFileChunkingConfig
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Specifies the fixed length chunking config.
  # @!attribute [rw] chunk_size
  #   @return [::Integer]
  #     The size of the chunks.
  # @!attribute [rw] chunk_overlap
  #   @return [::Integer]
  #     The overlap between chunks.
  class FixedLengthChunking
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end
end