[PR #738] [MERGED] fix(docs): Update HITL and add interrupt docs #978

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

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/langgraphjs/pull/738
Author: @bracesproul
Created: 12/11/2024
Status: Merged
Merged: 12/13/2024
Merged by: @bracesproul

Base: mainHead: brace/update-hitl-docs


📝 Commits (10+)

📊 Changes

26 files changed (+2601 additions, -709 deletions)

View changed files

📝 .gitignore (+1 -0)
📝 .vscode/settings.json (+2 -1)
docs/_scripts/notebook_convert.py (+123 -0)
docs/_scripts/notebook_convert_templates/mdoutput/conf.json (+5 -0)
docs/_scripts/notebook_convert_templates/mdoutput/index.md.j2 (+33 -0)
docs/_scripts/notebook_hooks.py (+40 -0)
docs/docs/concepts/breakpoints.md (+146 -0)
📝 docs/docs/concepts/human_in_the_loop.md (+694 -218)
docs/docs/concepts/img/human_in_the_loop/approve-or-reject.png (+0 -0)
docs/docs/concepts/img/human_in_the_loop/edit-graph-state-simple.png (+0 -0)
docs/docs/concepts/img/human_in_the_loop/multi-turn-conversation.png (+0 -0)
docs/docs/concepts/img/human_in_the_loop/tool-call-review.png (+0 -0)
📝 docs/docs/concepts/index.md (+2 -0)
📝 docs/docs/concepts/low_level.md (+5 -1)
📝 docs/docs/concepts/persistence.md (+11 -13)
docs/docs/concepts/time-travel.md (+83 -0)
docs/docs/concepts/v0-human-in-the-loop.md (+341 -0)
📝 docs/docs/how-tos/index.md (+1 -0)
📝 docs/mkdocs.yml (+2 -6)
📝 examples/how-tos/breakpoints.ipynb (+7 -0)

...and 6 more files

📄 Description

Files to update/add:

  • concepts/index.md
  • concepts/human_in_the_loop.md
  • concepts/v0-human-in-the-loop.md
  • concepts/breakpoints.md (new)
  • concepts/low_level.md
  • concepts/persistence.md
  • concepts/time-travel.md (new)
  • how-tos/human_in_the_loop/review-tool-calls.ipynb
  • how-tos/human_in_the_loop/wait-user-input.ipynb
  • how-tos/index.md
  • how-tos/multi-agent-multi-turn-convo.ipynb (new)

🔄 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/738 **Author:** [@bracesproul](https://github.com/bracesproul) **Created:** 12/11/2024 **Status:** ✅ Merged **Merged:** 12/13/2024 **Merged by:** [@bracesproul](https://github.com/bracesproul) **Base:** `main` ← **Head:** `brace/update-hitl-docs` --- ### 📝 Commits (10+) - [`7f9e29c`](https://github.com/langchain-ai/langgraphjs/commit/7f9e29c2a3ff5f80ae96a98846b6083ceb402f93) fix(docs): Update HITL and add interrupt docs - [`60e7050`](https://github.com/langchain-ai/langgraphjs/commit/60e7050f9fc9fc10059b521039e945e413a4f4c1) add pre-req section - [`bc200a7`](https://github.com/langchain-ai/langgraphjs/commit/bc200a768513536abdb34c345028e8257897bf20) cr - [`a81b67e`](https://github.com/langchain-ai/langgraphjs/commit/a81b67e3f55f459dc8ede632ce0a344c9959677a) cr - [`7300015`](https://github.com/langchain-ai/langgraphjs/commit/73000153bd4f930902f067ab88d4e85dac447673) v0 human in the loop - [`d408e3f`](https://github.com/langchain-ai/langgraphjs/commit/d408e3fbd4369718c7b530f3a6e75c9724d52b6a) rename fi;e - [`5a9833c`](https://github.com/langchain-ai/langgraphjs/commit/5a9833c0786b74a6705d31c57c0a3dc86b44916c) cr - [`09fdb83`](https://github.com/langchain-ai/langgraphjs/commit/09fdb830f8f5bc9da0d488b0f0b3370808b8a2a7) cr - [`669c6f7`](https://github.com/langchain-ai/langgraphjs/commit/669c6f796bd08a640f0b2e26e74a0680ecce15b2) cr - [`02746ad`](https://github.com/langchain-ai/langgraphjs/commit/02746ad1d344e948a6456321cd73431e7942c238) cr ### 📊 Changes **26 files changed** (+2601 additions, -709 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+1 -0) 📝 `.vscode/settings.json` (+2 -1) ➕ `docs/_scripts/notebook_convert.py` (+123 -0) ➕ `docs/_scripts/notebook_convert_templates/mdoutput/conf.json` (+5 -0) ➕ `docs/_scripts/notebook_convert_templates/mdoutput/index.md.j2` (+33 -0) ➕ `docs/_scripts/notebook_hooks.py` (+40 -0) ➕ `docs/docs/concepts/breakpoints.md` (+146 -0) 📝 `docs/docs/concepts/human_in_the_loop.md` (+694 -218) ➕ `docs/docs/concepts/img/human_in_the_loop/approve-or-reject.png` (+0 -0) ➕ `docs/docs/concepts/img/human_in_the_loop/edit-graph-state-simple.png` (+0 -0) ➕ `docs/docs/concepts/img/human_in_the_loop/multi-turn-conversation.png` (+0 -0) ➕ `docs/docs/concepts/img/human_in_the_loop/tool-call-review.png` (+0 -0) 📝 `docs/docs/concepts/index.md` (+2 -0) 📝 `docs/docs/concepts/low_level.md` (+5 -1) 📝 `docs/docs/concepts/persistence.md` (+11 -13) ➕ `docs/docs/concepts/time-travel.md` (+83 -0) ➕ `docs/docs/concepts/v0-human-in-the-loop.md` (+341 -0) 📝 `docs/docs/how-tos/index.md` (+1 -0) 📝 `docs/mkdocs.yml` (+2 -6) 📝 `examples/how-tos/breakpoints.ipynb` (+7 -0) _...and 6 more files_ </details> ### 📄 Description Files to update/add: - [x] concepts/index.md - [x] concepts/human_in_the_loop.md - [x] concepts/v0-human-in-the-loop.md - [x] concepts/breakpoints.md (new) - [x] concepts/low_level.md - [x] concepts/persistence.md - [x] concepts/time-travel.md (new) - [x] how-tos/human_in_the_loop/review-tool-calls.ipynb - [x] how-tos/human_in_the_loop/wait-user-input.ipynb - [x] how-tos/index.md - [x] how-tos/multi-agent-multi-turn-convo.ipynb (new) --- <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:16:38 -05:00
yindo closed this issue 2026-02-15 19:16:38 -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#978