Graphorin API reference v0.1.0
Graphorin API reference / @graphorin/core / / ToolCall
Interface: ToolCall
Defined in: packages/core/src/types/tool.ts:154
A single tool invocation produced by an LLM. The runtime hands these to the tool executor for parallel dispatch.
Stable
Properties
| Property | Modifier | Type | Description | Defined in |
|---|---|---|---|---|
args | readonly | unknown | Validated input matching the tool's inputSchema. | packages/core/src/types/tool.ts:160 |
toolCallId | readonly | string | Stable identifier the model uses to correlate input and output. | packages/core/src/types/tool.ts:156 |
toolName | readonly | string | Tool name as registered in the ToolRegistry. | packages/core/src/types/tool.ts:158 |