Type Alias: DispatchToolCallDeleteFn
ts
type DispatchToolCallDeleteFn = (
ctx: DispatchContext,
id: string,
) => void | Promise<void>;Defined in: lib/contracts/dispatch_context.ts:132
Removes a tool call by ID (LLM execution context variant).
Parameters
| Parameter | Type |
|---|---|
ctx | DispatchContext |
id | string |
Returns
void | Promise<void>