flutter_agentic_graph 0.1.0
flutter_agentic_graph: ^0.1.0 copied to clipboard
Stateful agent graphs for Flutter — nodes, conditional edges, cycles, checkpointing, and human-in-the-loop. LangGraph-style orchestration for flutter_agentic.
Changelog #
0.1.0 — 2026-07-02 #
Initial release.
StateGraphbuilder: nodes, fixed edges, conditional edges (with optional mapping), entry point,__end__routing.- Shared state channels with per-key
Reducers (overwrite,append,add, custom). CompiledGraph.invoke/streamwith liveGraphEvents (NodeStarted,NodeCompleted,NodeFailed,GraphPaused,GraphCompleted).- Cycles with a configurable
recursionLimit(GraphRecursionErroron overflow). - Checkpointing:
Checkpointerinterface +MemoryCheckpointer, per-threadIdsnapshots after every node. - Human-in-the-loop: static
interruptBefore/interruptAfterbreakpoints and dynamicctx.interrupt(payload);resume(threadId, update:, resumeValue:). agentNode(...)adapter to use any flutter_agenticGenesisAgentas a graph node.