Skip to content
1 min read · 41 words

Type Alias: DispatchStandingInstructionsRefreshFn

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

Refreshes and returns standing instructions for an LLM execution context.

Parameters

ParameterType
ctxDispatchContext

Returns

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