Skip to content
1 min read · 44 words

Type Alias: DispatchStandingInstructionsRefreshFn

ts
type DispatchStandingInstructionsRefreshFn = (
  ctx: DispatchContext,
) => (string | Tokenizable)[] | Promise<(string | Tokenizable)[]>;

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

Refreshes and returns standing instructions for an LLM execution context.

Parameters

ParameterType
ctxDispatchContext

Returns

| (string | Tokenizable)[] | Promise<(string | Tokenizable)[]>