Type Alias: DispatchRetrievableStoreFn
ts
type DispatchRetrievableStoreFn = (
ctx: DispatchContext,
v: Retrievable,
) => void | Promise<void>;Defined in: lib/contracts/dispatch_context.ts:93
Stores a new retrievable record (LLM execution context variant).
Parameters
| Parameter | Type |
|---|---|
ctx | DispatchContext |
v | Retrievable |
Returns
void | Promise<void>