Type Alias: DispatchStandingInstructionStoreFn
ts
type DispatchStandingInstructionStoreFn = (
ctx: DispatchContext,
v: string | Tokenizable,
) => void | Promise<void>;Defined in: lib/contracts/dispatch_context.ts:61
Stores a new standing instruction (LLM execution context variant).
Parameters
| Parameter | Type |
|---|---|
ctx | DispatchContext |
v | string | Tokenizable |
Returns
void | Promise<void>