Class: Aws::BedrockAgentRuntime::Types::Rationale

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

Overview

Contains the reasoning, based on the input, that the agent uses to justify carrying out an action group or getting information from a knowledge base.

Constant Summary collapse

SENSITIVE =
[:text]

Instance Attribute Summary collapse

Instance Attribute Details

#textString

The reasoning or thought process of the agent, based on the input.

Returns:

  • (String)


1662
1663
1664
1665
1666
1667
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 1662

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

#trace_idString

The unique identifier of the trace step.

Returns:

  • (String)


1662
1663
1664
1665
1666
1667
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 1662

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