Skip to content
1 min read · 38 words

Type Alias: DispatchRetrievableRetrievalFn

ts
type DispatchRetrievableRetrievalFn = (
  ctx: DispatchContext,
) => Retrievable[] | Promise<Retrievable[]>;

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

Retrieves retrievable records for an LLM execution context.

Parameters

ParameterType
ctxDispatchContext

Returns

| Retrievable[] | Promise<Retrievable[]>