Skip to main content

Crate langgraph_checkpoint_sqlite_rs

Crate langgraph_checkpoint_sqlite_rs 

Source
Expand description

SQLite checkpoint saver implementation using sqlx.

Mirrors the architecture of langgraph-checkpoint-postgres, adapted for SQLite’s syntax and feature set. Uses a three-table schema (checkpoints, checkpoint_blobs, checkpoint_writes) plus a checkpoint_migrations table for schema versioning.

Re-exports§

pub use saver::SqliteSaver;

Modules§

queries
SQL schema and statement constants for the SQLite checkpoint saver.
saver