Graphorin API reference v0.7.0
Graphorin API reference / @graphorin/memory / / Trajectory
Interface: Trajectory
Defined in: packages/memory/src/consolidator/phases/induce.ts:66
The minimal trajectory an inducer needs: the goal, the ordered steps, and whether the run succeeded. Induction fires on success only (AWM online mode) - runWorkflowInduction returns null for a failed run.
Stable
Properties
| Property | Modifier | Type | Description | Defined in |
|---|---|---|---|---|
goal | readonly | string | What the run set out to do (typically the first user message). | packages/memory/src/consolidator/phases/induce.ts:68 |
steps | readonly | readonly TrajectoryStep[] | Ordered steps the agent took. | packages/memory/src/consolidator/phases/induce.ts:70 |
succeeded | readonly | boolean | Whether the run succeeded - the induction gate. | packages/memory/src/consolidator/phases/induce.ts:72 |