Interface: StateReducers
Defined in: packages/agentos/src/orchestration/ir/types.ts:609
Maps dot-notation field paths in GraphState.scratch / GraphState.artifacts to
either a BuiltinReducer name or a custom ReducerFn.
Example:
const reducers: StateReducers = {
'scratch.messages': 'concat',
'artifacts.summary': (a, b) => String(b ?? a),
};
Indexable
[fieldPath: string]: ReducerFn | BuiltinReducer