Class: Aws::BedrockRuntime::Types::DocumentChunkLocation
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockRuntime::Types::DocumentChunkLocation
- Defined in:
- gems/aws-sdk-bedrockruntime/lib/aws-sdk-bedrockruntime/types.rb
Overview
Specifies a chunk-level location within a document, providing positioning information for cited content using logical document segments or chunks.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#document_index ⇒ Integer
The index of the document within the array of documents provided in the request.
-
#end ⇒ Integer
The ending chunk identifier or index of the cited content within the document.
-
#start ⇒ Integer
The starting chunk identifier or index of the cited content within the document.
Instance Attribute Details
#document_index ⇒ Integer
The index of the document within the array of documents provided in the request.
1298 1299 1300 1301 1302 1303 1304 |
# File 'gems/aws-sdk-bedrockruntime/lib/aws-sdk-bedrockruntime/types.rb', line 1298 class DocumentChunkLocation < Struct.new( :document_index, :start, :end) SENSITIVE = [] include Aws::Structure end |
#end ⇒ Integer
The ending chunk identifier or index of the cited content within the document.
1298 1299 1300 1301 1302 1303 1304 |
# File 'gems/aws-sdk-bedrockruntime/lib/aws-sdk-bedrockruntime/types.rb', line 1298 class DocumentChunkLocation < Struct.new( :document_index, :start, :end) SENSITIVE = [] include Aws::Structure end |
#start ⇒ Integer
The starting chunk identifier or index of the cited content within the document.
1298 1299 1300 1301 1302 1303 1304 |
# File 'gems/aws-sdk-bedrockruntime/lib/aws-sdk-bedrockruntime/types.rb', line 1298 class DocumentChunkLocation < Struct.new( :document_index, :start, :end) SENSITIVE = [] include Aws::Structure end |