Type Alias: DispatchMemoryMutateFn
ts
type DispatchMemoryMutateFn = (
ctx: DispatchContext,
v: Memory,
) => void | Promise<void>;Updates an existing memory (LLM execution context variant).
Parameters
| Parameter | Type |
|---|---|
ctx | DispatchContext |
v | Memory |
Returns
void | Promise<void>