Class: Aws::BedrockRuntime::Types::CitationsContentBlock
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockRuntime::Types::CitationsContentBlock
- Defined in:
- gems/aws-sdk-bedrockruntime/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.
584 585 586 587 588 589 |
# File 'gems/aws-sdk-bedrockruntime/lib/aws-sdk-bedrockruntime/types.rb', line 584 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.
584 585 586 587 588 589 |
# File 'gems/aws-sdk-bedrockruntime/lib/aws-sdk-bedrockruntime/types.rb', line 584 class CitationsContentBlock < Struct.new( :content, :citations) SENSITIVE = [] include Aws::Structure end |