Skip to main content

langgraph_checkpoint_postgres/
lib.rs

1//! PostgreSQL-backed [`CheckpointSaver`](langgraph_checkpoint::CheckpointSaver) implementation.
2//!
3//! [`PostgresSaver`] stores checkpoints in a PostgreSQL database for multi-process
4//! or production deployments.
5
6mod postgres_saver;
7
8pub use postgres_saver::PostgresSaver;