[PR #418] [MERGED] langgraph[patch]: Add node interrupt support #742

Closed
opened 2026-02-15 19:15:44 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/langgraphjs/pull/418
Author: @jacoblee93
Created: 8/28/2024
Status: Merged
Merged: 8/29/2024
Merged by: @jacoblee93

Base: mainHead: jacob/node_interrupts


📝 Commits (9)

📊 Changes

17 files changed (+896 additions, -591 deletions)

View changed files

📝 docs/docs/how-tos/index.md (+1 -1)
📝 docs/mkdocs.yml (+2 -1)
📝 examples/how-tos/breakpoints.ipynb (+11 -11)
examples/how-tos/dynamic_breakpoints.ipynb (+469 -0)
examples/how-tos/human-in-the-loop.ipynb (+0 -473)
📝 libs/langgraph/src/constants.ts (+6 -0)
📝 libs/langgraph/src/errors.ts (+33 -2)
📝 libs/langgraph/src/pregel/algo.ts (+2 -2)
📝 libs/langgraph/src/pregel/debug.ts (+42 -8)
📝 libs/langgraph/src/pregel/index.ts (+42 -30)
📝 libs/langgraph/src/pregel/loop.ts (+45 -19)
📝 libs/langgraph/src/pregel/retry.ts (+12 -11)
📝 libs/langgraph/src/pregel/types.ts (+2 -0)
📝 libs/langgraph/src/tests/pregel.test.ts (+208 -26)
📝 libs/langgraph/src/tests/utils.ts (+11 -0)
📝 libs/langgraph/src/utils.ts (+8 -0)
📝 libs/langgraph/src/web.ts (+2 -7)

📄 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/langgraphjs/pull/418 **Author:** [@jacoblee93](https://github.com/jacoblee93) **Created:** 8/28/2024 **Status:** ✅ Merged **Merged:** 8/29/2024 **Merged by:** [@jacoblee93](https://github.com/jacoblee93) **Base:** `main` ← **Head:** `jacob/node_interrupts` --- ### 📝 Commits (9) - [`deae381`](https://github.com/langchain-ai/langgraphjs/commit/deae3815725bbd7e26fa7ba52ac1f996acd17001) Add node interrupt support - [`b4ff6b5`](https://github.com/langchain-ai/langgraphjs/commit/b4ff6b50a888974910c6ffd4d96ccdbb5657c119) Merge branch 'main' of https://github.com/langchain-ai/langgraphjs into jacob/node_interrupts - [`2537e12`](https://github.com/langchain-ai/langgraphjs/commit/2537e125b45f4ef0cf8cd924dcc5e3b407b3ab8b) Add test - [`b8dee82`](https://github.com/langchain-ai/langgraphjs/commit/b8dee82cb3d8a9cc241687529decefbd2fa2864a) Add in more places - [`5e77fe0`](https://github.com/langchain-ai/langgraphjs/commit/5e77fe0ff0298d931962abeef6c677b48152d5a5) Include interrupts in task descriptions, refactor loop - [`f3ae8bd`](https://github.com/langchain-ai/langgraphjs/commit/f3ae8bdb18396847fb1c3c4bbf4aa1b01e342656) Fix docs - [`6cf7e70`](https://github.com/langchain-ai/langgraphjs/commit/6cf7e70d24ebcd92127e1fb7ee0d8501d0396ce1) Remove old doc, add redirect - [`107e108`](https://github.com/langchain-ai/langgraphjs/commit/107e1088ea047a9fd0b07b3fa9ef0495b5ae4184) Remove - [`25c6dc8`](https://github.com/langchain-ai/langgraphjs/commit/25c6dc895c1315036e5a0ea42f37bcc7adec73bf) Fix lint ### 📊 Changes **17 files changed** (+896 additions, -591 deletions) <details> <summary>View changed files</summary> 📝 `docs/docs/how-tos/index.md` (+1 -1) 📝 `docs/mkdocs.yml` (+2 -1) 📝 `examples/how-tos/breakpoints.ipynb` (+11 -11) ➕ `examples/how-tos/dynamic_breakpoints.ipynb` (+469 -0) ➖ `examples/how-tos/human-in-the-loop.ipynb` (+0 -473) 📝 `libs/langgraph/src/constants.ts` (+6 -0) 📝 `libs/langgraph/src/errors.ts` (+33 -2) 📝 `libs/langgraph/src/pregel/algo.ts` (+2 -2) 📝 `libs/langgraph/src/pregel/debug.ts` (+42 -8) 📝 `libs/langgraph/src/pregel/index.ts` (+42 -30) 📝 `libs/langgraph/src/pregel/loop.ts` (+45 -19) 📝 `libs/langgraph/src/pregel/retry.ts` (+12 -11) 📝 `libs/langgraph/src/pregel/types.ts` (+2 -0) 📝 `libs/langgraph/src/tests/pregel.test.ts` (+208 -26) 📝 `libs/langgraph/src/tests/utils.ts` (+11 -0) 📝 `libs/langgraph/src/utils.ts` (+8 -0) 📝 `libs/langgraph/src/web.ts` (+2 -7) </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-15 19:15:44 -05:00
yindo closed this issue 2026-02-15 19:15:44 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langchain-ai/langgraphjs#742