Skip to content
1 min read · 41 words

Type Alias: DispatchStandingInstructionDeleteFn

ts
type DispatchStandingInstructionDeleteFn = (
  ctx: DispatchContext,
  v: string | Tokenizable,
) => void | Promise<void>;

Removes a standing instruction (LLM execution context variant).

Parameters

ParameterType
ctxDispatchContext
vstring | Tokenizable

Returns

void | Promise<void>