[PR #1163] [MERGED] langgraph checkpoint: new library for checkpoint interfaces #1922

Closed
opened 2026-02-20 17:45:52 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/langgraph/pull/1163
Author: @vbarda
Created: 7/29/2024
Status: Merged
Merged: 7/31/2024
Merged by: @vbarda

Base: mainHead: vb/langgraph-checkpoint


📝 Commits (10+)

  • 5d23a4b langgraph checkpoint: new library for checkpoint interfaces
  • 2dde86c langgraph: switch to langgraph_checkpoint
  • d1cfc96 lint & test
  • c5b1a7e Merge branch 'vb/switch-to-new-lib' into vb/langgraph-checkpoint
  • a085783 denest
  • 69ef381 add dev dependency & update tests
  • 891a59a update README & other docs
  • 27cf8a6 Merge branch 'main' into vb/langgraph-checkpoint
  • e6fb874 add serde to readme
  • e4ca7ab more docs

📊 Changes

54 files changed (+10644 additions, -9399 deletions)

View changed files

📝 README.md (+1 -1)
📝 docs/docs/reference/checkpoints.md (+4 -2)
📝 examples/chat_agent_executor_with_function_calling/human-in-the-loop.ipynb (+357 -331)
📝 examples/cloud_examples/langgraph_to_langgraph_cloud.ipynb (+1036 -1036)
📝 examples/create-react-agent-hitl.ipynb (+239 -239)
📝 examples/create-react-agent-memory.ipynb (+248 -248)
📝 examples/human_in_the_loop/breakpoints.ipynb (+462 -462)
📝 examples/human_in_the_loop/edit-graph-state.ipynb (+559 -559)
📝 examples/human_in_the_loop/time-travel.ipynb (+554 -554)
📝 examples/human_in_the_loop/wait-user-input.ipynb (+647 -647)
📝 examples/persistence.ipynb (+584 -584)
📝 examples/persistence_mongodb.ipynb (+1008 -1008)
📝 examples/persistence_postgres.ipynb (+1027 -1027)
📝 examples/persistence_redis.ipynb (+823 -823)
📝 examples/storm/storm.ipynb (+998 -914)
📝 examples/subgraph.ipynb (+666 -666)
libs/checkpoint/LICENSE (+21 -0)
libs/checkpoint/Makefile (+31 -0)
libs/checkpoint/README.md (+85 -0)
📝 libs/checkpoint/langgraph/checkpoint/base/__init__.py (+55 -19)

...and 34 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/langchain-ai/langgraph/pull/1163 **Author:** [@vbarda](https://github.com/vbarda) **Created:** 7/29/2024 **Status:** ✅ Merged **Merged:** 7/31/2024 **Merged by:** [@vbarda](https://github.com/vbarda) **Base:** `main` ← **Head:** `vb/langgraph-checkpoint` --- ### 📝 Commits (10+) - [`5d23a4b`](https://github.com/langchain-ai/langgraph/commit/5d23a4b752fde3cf093d77a80a774d48ec9f7dff) langgraph checkpoint: new library for checkpoint interfaces - [`2dde86c`](https://github.com/langchain-ai/langgraph/commit/2dde86c775b9ce7f37a0a8edf5784b36c3c45178) langgraph: switch to langgraph_checkpoint - [`d1cfc96`](https://github.com/langchain-ai/langgraph/commit/d1cfc96ae8e78900cdd40e7ca9863ad531b4ae9d) lint & test - [`c5b1a7e`](https://github.com/langchain-ai/langgraph/commit/c5b1a7e3d5989d347bb7aef95bc94d3bb1961639) Merge branch 'vb/switch-to-new-lib' into vb/langgraph-checkpoint - [`a085783`](https://github.com/langchain-ai/langgraph/commit/a085783d3029a847a16f27764a2f15f59ebfd9d1) denest - [`69ef381`](https://github.com/langchain-ai/langgraph/commit/69ef3818efc670f086e88c660a55ea182930d387) add dev dependency & update tests - [`891a59a`](https://github.com/langchain-ai/langgraph/commit/891a59a527420abaaf1e54a0c258b616184720b5) update README & other docs - [`27cf8a6`](https://github.com/langchain-ai/langgraph/commit/27cf8a6565571fa2f67de346a07d7acb4a308e97) Merge branch 'main' into vb/langgraph-checkpoint - [`e6fb874`](https://github.com/langchain-ai/langgraph/commit/e6fb874d2e6d54883121204a01c4bcfb6d2a25ea) add serde to readme - [`e4ca7ab`](https://github.com/langchain-ai/langgraph/commit/e4ca7ab69c599fd77dd4f0d47280849d715392cc) more docs ### 📊 Changes **54 files changed** (+10644 additions, -9399 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+1 -1) 📝 `docs/docs/reference/checkpoints.md` (+4 -2) 📝 `examples/chat_agent_executor_with_function_calling/human-in-the-loop.ipynb` (+357 -331) 📝 `examples/cloud_examples/langgraph_to_langgraph_cloud.ipynb` (+1036 -1036) 📝 `examples/create-react-agent-hitl.ipynb` (+239 -239) 📝 `examples/create-react-agent-memory.ipynb` (+248 -248) 📝 `examples/human_in_the_loop/breakpoints.ipynb` (+462 -462) 📝 `examples/human_in_the_loop/edit-graph-state.ipynb` (+559 -559) 📝 `examples/human_in_the_loop/time-travel.ipynb` (+554 -554) 📝 `examples/human_in_the_loop/wait-user-input.ipynb` (+647 -647) 📝 `examples/persistence.ipynb` (+584 -584) 📝 `examples/persistence_mongodb.ipynb` (+1008 -1008) 📝 `examples/persistence_postgres.ipynb` (+1027 -1027) 📝 `examples/persistence_redis.ipynb` (+823 -823) 📝 `examples/storm/storm.ipynb` (+998 -914) 📝 `examples/subgraph.ipynb` (+666 -666) ➕ `libs/checkpoint/LICENSE` (+21 -0) ➕ `libs/checkpoint/Makefile` (+31 -0) ➕ `libs/checkpoint/README.md` (+85 -0) 📝 `libs/checkpoint/langgraph/checkpoint/base/__init__.py` (+55 -19) _...and 34 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-20 17:45:52 -05:00
yindo closed this issue 2026-02-20 17:45:52 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langchain-ai/langgraph#1922