lellm-graph 0.4.6

Graph/Node/Edge orchestration layer for LeLLM — with State, Delta, Checkpoint
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! 检查点 + 持久化 — Checkpoint, Policy, Codec, Store, MutationLog, Trace。

pub(crate) mod checkpoint;
pub(crate) mod checkpoint_codec;
pub(crate) mod checkpoint_policy;
pub(crate) mod mutation_log;
pub(crate) mod store;
pub(crate) mod trace;

pub use checkpoint::*;
pub use checkpoint_codec::*;
pub use checkpoint_policy::*;
pub use mutation_log::*;
pub use store::*;
pub use trace::*;