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