LangChain Reference home pageLangChain ReferenceLangChain Reference
  • GitHub
  • Main Docs
Deep Agents
LangChain
LangGraph
Integrations
LangSmith
  • Overview
  • LangGraph Checkpoint
    LangGraph Store
    Checkpoint Postgres
    Store Postgres
    Checkpoint SQLite
    LangGraph Prebuilt
    LangGraph CLI
    LangGraph SDK
    LangGraph Supervisor
    LangGraph Swarm
    ⌘I

    LangChain Assistant

    Ask a question to get started

    Enter to send•Shift+Enter new line

    Menu

    LangGraph Checkpoint
    LangGraph Store
    Checkpoint Postgres
    Store Postgres
    Checkpoint SQLite
    LangGraph Prebuilt
    LangGraph CLI
    LangGraph SDK
    LangGraph Supervisor
    LangGraph Swarm
    Language
    Theme
    Pythonlanggraph-clischemasCheckpointerConfigpath
    Attribute●Since v0.4

    path

    Copy
    path: str
    View source on GitHub

    Import path to an async context manager that yields a BaseCheckpointSaver instance.

    The referenced object should be an @asynccontextmanager-decorated function so that the server can properly manage the checkpointer's lifecycle (e.g. opening and closing connections).

    Examples:

    • "./my_checkpointer.py:create_checkpointer"
    • "my_package.checkpointer:create_checkpointer"

    When provided, this replaces the default checkpointer.

    You can use the langgraph-checkpoint-conformance package (https://pypi.org/project/langgraph-checkpoint-conformance/) to run simple conformance tests against your custom checkpointer and catch incompatibilities early.