Skip to content
1 min read · 43 words

Type Alias: DispatchThoughtDeleteFn

ts
type DispatchThoughtDeleteFn = (
  ctx: DispatchContext,
  id: string,
) => void | Promise<void>;

Defined in: lib/contracts/dispatch_context.ts:123

Removes a thought by ID (LLM execution context variant).

Parameters

ParameterType
ctxDispatchContext
idstring

Returns

void | Promise<void>