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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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)


2551
2552
2553
2554
2555
2556
# File 'lib/aws-sdk-bedrockruntime/types.rb', line 2551

class ReasoningTextBlock < Struct.new(
  :text,
  :signature)
  SENSITIVE = []
  include Aws::Structure
end

#textString

The reasoning that the model used to return the output.

Returns:

  • (String)


2551
2552
2553
2554
2555
2556
# File 'lib/aws-sdk-bedrockruntime/types.rb', line 2551

class ReasoningTextBlock < Struct.new(
  :text,
  :signature)
  SENSITIVE = []
  include Aws::Structure
end