[PR #10] [MERGED] Add names for each chain, improve debug logging #1163

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

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/langgraph/pull/10
Author: @nfcampos
Created: 10/22/2023
Status: Merged
Merged: 10/23/2023
Merged by: @nfcampos

Base: mainHead: nc/main-chain


📝 Commits (4)

  • 9dfffe5 Add an optional "main" chain which has implicit input and output channels
  • 2746004 Remove "main" chain, Improve debug logging, Remove max_steps from send_to, Add retries to recursive web loader
  • 8284a6b Rename send_to to write_to
  • 948ab93 Lint

📊 Changes

13 files changed (+325 additions, -313 deletions)

View changed files

📝 README.md (+2 -2)
📝 examples/draft-revise-loop.py (+14 -9)
📝 examples/readme.py (+2 -2)
📝 examples/recursive-web-loader.py (+31 -11)
📝 permchain/pregel/__init__.py (+71 -136)
📝 permchain/pregel/constants.py (+0 -1)
permchain/pregel/debug.py (+34 -0)
permchain/pregel/io.py (+34 -0)
permchain/pregel/log.py (+3 -0)
📝 permchain/pregel/validate.py (+2 -2)
📝 permchain/pregel/write.py (+2 -23)
📝 tests/test_pregel.py (+66 -65)
📝 tests/test_pregel_async.py (+64 -62)

📄 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/10 **Author:** [@nfcampos](https://github.com/nfcampos) **Created:** 10/22/2023 **Status:** ✅ Merged **Merged:** 10/23/2023 **Merged by:** [@nfcampos](https://github.com/nfcampos) **Base:** `main` ← **Head:** `nc/main-chain` --- ### 📝 Commits (4) - [`9dfffe5`](https://github.com/langchain-ai/langgraph/commit/9dfffe5fc0963588b25d0f78159c13aafc6625a2) Add an optional "main" chain which has implicit input and output channels - [`2746004`](https://github.com/langchain-ai/langgraph/commit/274600436b61f51bf86e9653bd3bc204e4453f93) Remove "main" chain, Improve debug logging, Remove max_steps from send_to, Add retries to recursive web loader - [`8284a6b`](https://github.com/langchain-ai/langgraph/commit/8284a6b6eaa24122e1e7bf7ad960ba7870374490) Rename send_to to write_to - [`948ab93`](https://github.com/langchain-ai/langgraph/commit/948ab93563dacc706ffe54454eeb81760a661439) Lint ### 📊 Changes **13 files changed** (+325 additions, -313 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+2 -2) 📝 `examples/draft-revise-loop.py` (+14 -9) 📝 `examples/readme.py` (+2 -2) 📝 `examples/recursive-web-loader.py` (+31 -11) 📝 `permchain/pregel/__init__.py` (+71 -136) 📝 `permchain/pregel/constants.py` (+0 -1) ➕ `permchain/pregel/debug.py` (+34 -0) ➕ `permchain/pregel/io.py` (+34 -0) ➕ `permchain/pregel/log.py` (+3 -0) 📝 `permchain/pregel/validate.py` (+2 -2) 📝 `permchain/pregel/write.py` (+2 -23) 📝 `tests/test_pregel.py` (+66 -65) 📝 `tests/test_pregel_async.py` (+64 -62) </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:44:04 -05:00
yindo closed this issue 2026-02-20 17:44:04 -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#1163