Class: Aws::BedrockRuntime::Types::ReasoningTextBlock

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#signatureString

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.

Returns:

  • (String)


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

#textString

The reasoning that the model used to return the output.

Returns:

  • (String)


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