Type Alias: ToolCallStoreFn
ts
type ToolCallStoreFn = (ctx: TurnContext, v: ToolCall) => void | Promise<void>;Defined in: src/lib/contracts/turn_runner_context.ts:212
Stores a new tool call in the persistence layer.
Parameters
| Parameter | Type |
|---|---|
ctx | TurnContext |
v | ToolCall |
Returns
void | Promise<void>