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.
480 481 482 483 484 485 |
# File 'lib/aws-sdk-bedrockruntime/types.rb', line 480 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.
480 481 482 483 484 485 |
# File 'lib/aws-sdk-bedrockruntime/types.rb', line 480 class CitationsContentBlock < Struct.new( :content, :citations) SENSITIVE = [] include Aws::Structure end |