Type Alias: DispatchThoughtDeleteFn
ts
type DispatchThoughtDeleteFn = (
ctx: DispatchContext,
id: string,
) => void | Promise<void>;Removes a thought by ID (LLM execution context variant).
Parameters
| Parameter | Type |
|---|---|
ctx | DispatchContext |
id | string |
Returns
void | Promise<void>