Skip to content

Documentation / @agentick/shared / ToolCall

Interface: ToolCall ​

Defined in: tools.ts:97

Tool call - represents a tool call made by the model.

Used in streaming, execution tracking, and message content.

Properties ​

id ​

id: string

Defined in: tools.ts:99

Unique ID for this tool call (correlates with tool_result)


input ​

input: Record<string, unknown>

Defined in: tools.ts:103

Tool input parameters


name ​

name: string

Defined in: tools.ts:101

Tool name


result? ​

optional result: ToolResult

Defined in: tools.ts:105

Result of tool execution (present after execution)

Released under the ISC License.