Class: Google::Cloud::AIPlatform::V1::RagFileChunkingConfig
- Inherits:
-
Object
- Object
- Google::Cloud::AIPlatform::V1::RagFileChunkingConfig
- 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
-
#fixed_length_chunking ⇒ ::Google::Cloud::AIPlatform::V1::RagFileChunkingConfig::FixedLengthChunking
Specifies the fixed length chunking config.
Instance Attribute Details
#fixed_length_chunking ⇒ ::Google::Cloud::AIPlatform::V1::RagFileChunkingConfig::FixedLengthChunking
Returns Specifies the fixed length chunking config.
362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 |
# File 'proto_docs/google/cloud/aiplatform/v1/vertex_rag_data.rb', line 362 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 |