Skip to main content

Crate langgraph_checkpoint

Crate langgraph_checkpoint 

Source
Expand description

Checkpoint persistence traits and an in-memory implementation.

Use CheckpointSaver to store and retrieve graph snapshots keyed by ThreadId and CheckpointId. InMemorySaver is suitable for tests and single-process workflows.

Re-exports§

pub use memory::InMemorySaver;
pub use traits::CheckpointError;
pub use traits::CheckpointSaver;
pub use types::Checkpoint;
pub use types::CheckpointId;
pub use types::PendingWrite;
pub use types::ThreadId;

Modules§

memory
traits
types