Class: Aws::BedrockAgentRuntime::Types::ReasoningTextBlock

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb

Overview

Contains information about the reasoning that the model used to return the content in the content block.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#signatureString

A hash of all the messages in the conversation to ensure that the content in the reasoning text block isn't tampered with. You must submit the signature in subsequent Converse requests, in addition to the previous messages. If the previous messages are tampered with, the response throws an error.

Returns:

  • (String)


6932
6933
6934
6935
6936
6937
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 6932

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

#textString

Text describing the reasoning that the model used to return the content in the content block.

Returns:

  • (String)


6932
6933
6934
6935
6936
6937
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 6932

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