Class: Aws::BedrockRuntime::Types::CitationsDelta
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockRuntime::Types::CitationsDelta
- Defined in:
- gems/aws-sdk-bedrockruntime/lib/aws-sdk-bedrockruntime/types.rb
Overview
Contains incremental updates to citation information during streaming responses. This allows clients to build up citation data progressively as the response is generated.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#location ⇒ Types::CitationLocation
Specifies the precise location within a source document where cited content can be found.
-
#source_content ⇒ Array<Types::CitationSourceContentDelta>
The specific content from the source document that was referenced or cited in the generated response.
-
#title ⇒ String
The title or identifier of the source document being cited.
Instance Attribute Details
#location ⇒ Types::CitationLocation
Specifies the precise location within a source document where cited content can be found. This can include character-level positions, page numbers, or document chunks depending on the document type and indexing method.
478 479 480 481 482 483 484 |
# File 'gems/aws-sdk-bedrockruntime/lib/aws-sdk-bedrockruntime/types.rb', line 478 class CitationsDelta < Struct.new( :title, :source_content, :location) SENSITIVE = [] include Aws::Structure end |
#source_content ⇒ Array<Types::CitationSourceContentDelta>
The specific content from the source document that was referenced or cited in the generated response.
478 479 480 481 482 483 484 |
# File 'gems/aws-sdk-bedrockruntime/lib/aws-sdk-bedrockruntime/types.rb', line 478 class CitationsDelta < Struct.new( :title, :source_content, :location) SENSITIVE = [] include Aws::Structure end |
#title ⇒ String
The title or identifier of the source document being cited.
478 479 480 481 482 483 484 |
# File 'gems/aws-sdk-bedrockruntime/lib/aws-sdk-bedrockruntime/types.rb', line 478 class CitationsDelta < Struct.new( :title, :source_content, :location) SENSITIVE = [] include Aws::Structure end |