Class: Aws::BedrockRuntime::Types::ReasoningTextBlock
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockRuntime::Types::ReasoningTextBlock
- Defined in:
- gems/aws-sdk-bedrockruntime/lib/aws-sdk-bedrockruntime/types.rb
Overview
Contains the reasoning that the model used to return the output.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#signature ⇒ String
A token that verifies that the reasoning text was generated by the model.
-
#text ⇒ String
The reasoning that the model used to return the output.
Instance Attribute Details
#signature ⇒ String
A token that verifies that the reasoning text was generated by the model. If you pass a reasoning block back to the API in a multi-turn conversation, include the text and its signature unmodified.
2714 2715 2716 2717 2718 2719 |
# File 'gems/aws-sdk-bedrockruntime/lib/aws-sdk-bedrockruntime/types.rb', line 2714 class ReasoningTextBlock < Struct.new( :text, :signature) SENSITIVE = [] include Aws::Structure end |
#text ⇒ String
The reasoning that the model used to return the output.
2714 2715 2716 2717 2718 2719 |
# File 'gems/aws-sdk-bedrockruntime/lib/aws-sdk-bedrockruntime/types.rb', line 2714 class ReasoningTextBlock < Struct.new( :text, :signature) SENSITIVE = [] include Aws::Structure end |