Class: Aws::BedrockRuntime::Types::ToolUseBlock
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockRuntime::Types::ToolUseBlock
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-bedrockruntime/types.rb
Overview
A tool use content block. Contains information about a tool that the model is requesting be run., The model uses the result from the tool to generate a response.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#input ⇒ Hash, ...
The input to pass to the tool.
-
#name ⇒ String
The name of the tool that the model wants to use.
-
#tool_use_id ⇒ String
The ID for the tool request.
Instance Attribute Details
#input ⇒ Hash, ...
The input to pass to the tool.
2307 2308 2309 2310 2311 2312 2313 |
# File 'lib/aws-sdk-bedrockruntime/types.rb', line 2307 class ToolUseBlock < Struct.new( :tool_use_id, :name, :input) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the tool that the model wants to use.
2307 2308 2309 2310 2311 2312 2313 |
# File 'lib/aws-sdk-bedrockruntime/types.rb', line 2307 class ToolUseBlock < Struct.new( :tool_use_id, :name, :input) SENSITIVE = [] include Aws::Structure end |
#tool_use_id ⇒ String
The ID for the tool request.
2307 2308 2309 2310 2311 2312 2313 |
# File 'lib/aws-sdk-bedrockruntime/types.rb', line 2307 class ToolUseBlock < Struct.new( :tool_use_id, :name, :input) SENSITIVE = [] include Aws::Structure end |