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