Type Alias: DispatchThoughtStoreFn
ts
type DispatchThoughtStoreFn = (
ctx: DispatchContext,
v: Thought,
) => void | Promise<void>;Stores a new thought (LLM execution context variant).
Parameters
| Parameter | Type |
|---|---|
ctx | DispatchContext |
v | Thought |
Returns
void | Promise<void>