langgraph-checkpoint 0.1.0

Checkpoint saver trait and in-memory implementation for durable graph execution.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! 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.

pub mod memory;
pub mod traits;
pub mod types;

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