BedrockAnthropicInvokeModelToolResultContent

data class BedrockAnthropicInvokeModelToolResultContent(val type: String = "tool_result", val toolUseId: String, val content: String)(source)

Represents the result of invoking a Bedrock Anthropic model tool.

This data class contains the essential information returned by the tool invocation process.

Constructors

constructor(type: String = "tool_result", toolUseId: String, content: String)

Properties

Link copied to clipboard

The content or output generated from the tool invocation.

Link copied to clipboard
@SerialName(value = "tool_use_id")
val toolUseId: String

An identifier associated with the tool usage, allowing correlation with specific tool executions.

Link copied to clipboard

The type of the result, indicating its purpose or category.