Skip to content
1 min read · 42 words

Type Alias: DispatchStandingInstructionMutateFn

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

Updates an existing standing instruction (LLM execution context variant).

Parameters

ParameterType
ctxDispatchContext
vstring | Tokenizable

Returns

void | Promise<void>