Type Alias: DispatchToolCallStoreFn
ts
type DispatchToolCallStoreFn = (
ctx: DispatchContext,
v: ToolCall,
) => void | Promise<void>;Stores a new tool call (LLM execution context variant).
Parameters
| Parameter | Type |
|---|---|
ctx | DispatchContext |
v | ToolCall |
Returns
void | Promise<void>