[PR #1027] [CLOSED] langgraph: add nested interrupts/checkpoints #1845

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

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/langgraph/pull/1027
Author: @nfcampos
Created: 7/15/2024
Status: Closed

Base: mainHead: nc/15jul/nested-checkpoints


📝 Commits (10+)

📊 Changes

10 files changed (+963 additions, -77 deletions)

View changed files

📝 libs/langgraph/langgraph/checkpoint/sqlite.py (+1 -1)
📝 libs/langgraph/langgraph/constants.py (+10 -1)
📝 libs/langgraph/langgraph/errors.py (+12 -0)
📝 libs/langgraph/langgraph/pregel/__init__.py (+172 -67)
📝 libs/langgraph/langgraph/pregel/executor.py (+10 -0)
📝 libs/langgraph/poetry.lock (+5 -5)
📝 libs/langgraph/pyproject.toml (+1 -1)
📝 libs/langgraph/tests/__snapshots__/test_pregel.ambr (+2 -2)
📝 libs/langgraph/tests/test_pregel.py (+375 -0)
📝 libs/langgraph/tests/test_pregel_async.py (+375 -0)

📄 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/1027 **Author:** [@nfcampos](https://github.com/nfcampos) **Created:** 7/15/2024 **Status:** ❌ Closed **Base:** `main` ← **Head:** `nc/15jul/nested-checkpoints` --- ### 📝 Commits (10+) - [`af9ccae`](https://github.com/langchain-ai/langgraph/commit/af9ccae7e5911c8b9a1e9f0dc557d3f761ee3b8b) WIP nested interrupts/checkpoints - [`4bacb03`](https://github.com/langchain-ai/langgraph/commit/4bacb03766630b7b320b4978461b13f8c7dee11b) Add changes - [`50a69e4`](https://github.com/langchain-ai/langgraph/commit/50a69e44fdbd04071126d1865b5abca9655936fe) Merge branch 'main' into nc/15jul/nested-checkpoints - [`5ff0278`](https://github.com/langchain-ai/langgraph/commit/5ff027815a1f575880cccca80923deed49a9ac14) cleanup - [`2a24fd2`](https://github.com/langchain-ai/langgraph/commit/2a24fd2829e6fdb1d16ed605972891f35713bf88) add unit tests - [`e3a4933`](https://github.com/langchain-ai/langgraph/commit/e3a4933ab24c6b9d6a82861143bbfa81acdcb250) update async + async tests - [`e9575ea`](https://github.com/langchain-ai/langgraph/commit/e9575eac702e99171dd359f7535b926bc8afc514) update - [`038ba8a`](https://github.com/langchain-ai/langgraph/commit/038ba8a7a5ecb435e537e7afd204f121adb781d1) fix case w/ parent interrupts - [`914af92`](https://github.com/langchain-ai/langgraph/commit/914af923c4715b4736a5d6ba63091281f1824734) Merge branch 'main' into nc/15jul/nested-checkpoints - [`7122faa`](https://github.com/langchain-ai/langgraph/commit/7122faa63a197263306aaef69f265497fccbe407) Fix ### 📊 Changes **10 files changed** (+963 additions, -77 deletions) <details> <summary>View changed files</summary> 📝 `libs/langgraph/langgraph/checkpoint/sqlite.py` (+1 -1) 📝 `libs/langgraph/langgraph/constants.py` (+10 -1) 📝 `libs/langgraph/langgraph/errors.py` (+12 -0) 📝 `libs/langgraph/langgraph/pregel/__init__.py` (+172 -67) 📝 `libs/langgraph/langgraph/pregel/executor.py` (+10 -0) 📝 `libs/langgraph/poetry.lock` (+5 -5) 📝 `libs/langgraph/pyproject.toml` (+1 -1) 📝 `libs/langgraph/tests/__snapshots__/test_pregel.ambr` (+2 -2) 📝 `libs/langgraph/tests/test_pregel.py` (+375 -0) 📝 `libs/langgraph/tests/test_pregel_async.py` (+375 -0) </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:41 -05:00
yindo closed this issue 2026-02-20 17:45:41 -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#1845