Class: Aws::BedrockAgent::Types::ToolConfiguration

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-bedrockagent/types.rb

Overview

Configuration information for the tools that the model can use when generating a response. For more information, see [Use a tool to complete an Amazon Bedrock model response].

[1]: docs.aws.amazon.com/bedrock/latest/userguide/tool-use.html

Constant Summary collapse

SENSITIVE =
[:tools, :tool_choice]

Instance Attribute Summary collapse

Instance Attribute Details

#tool_choiceTypes::ToolChoice

Defines which tools the model should request when invoked.

Returns:



10266
10267
10268
10269
10270
10271
# File 'lib/aws-sdk-bedrockagent/types.rb', line 10266

class ToolConfiguration < Struct.new(
  :tools,
  :tool_choice)
  SENSITIVE = [:tools, :tool_choice]
  include Aws::Structure
end

#toolsArray<Types::Tool>

An array of tools to pass to a model.

Returns:



10266
10267
10268
10269
10270
10271
# File 'lib/aws-sdk-bedrockagent/types.rb', line 10266

class ToolConfiguration < Struct.new(
  :tools,
  :tool_choice)
  SENSITIVE = [:tools, :tool_choice]
  include Aws::Structure
end