Class: Aws::BedrockRuntime::Types::CitationsContentBlock
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockRuntime::Types::CitationsContentBlock
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-bedrockruntime/types.rb
Overview
A content block that contains both generated text and associated citation information. This block type is returned when document citations are enabled, providing traceability between the generated content and the source documents that informed the response.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#citations ⇒ Array<Types::Citation>
An array of citations that reference the source documents used to generate the associated content.
-
#content ⇒ Array<Types::CitationGeneratedContent>
The generated content that is supported by the associated citations.
Instance Attribute Details
#citations ⇒ Array<Types::Citation>
An array of citations that reference the source documents used to generate the associated content.
466 467 468 469 470 471 |
# File 'lib/aws-sdk-bedrockruntime/types.rb', line 466 class CitationsContentBlock < Struct.new( :content, :citations) SENSITIVE = [] include Aws::Structure end |
#content ⇒ Array<Types::CitationGeneratedContent>
The generated content that is supported by the associated citations.
466 467 468 469 470 471 |
# File 'lib/aws-sdk-bedrockruntime/types.rb', line 466 class CitationsContentBlock < Struct.new( :content, :citations) SENSITIVE = [] include Aws::Structure end |