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