[PR #15] [MERGED] Create a Topic channel, Make LastValue the default channel if not specified, Add default input and output keys #1170

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

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/langgraph/pull/15
Author: @nfcampos
Created: 11/4/2023
Status: Merged
Merged: 11/4/2023
Merged by: @nfcampos

Base: mainHead: nc/4nov/channel-topic


📝 Commits (1)

  • 7f76fbb Create a Topic channel, Make LastValue the default channel if not specified, Add default input and output keys

📊 Changes

19 files changed (+385 additions, -700 deletions)

View changed files

📝 README.md (+8 -9)
📝 examples/combine_docs.ipynb (+47 -45)
📝 examples/draft-revise-loop.py (+3 -25)
📝 examples/readme.py (+0 -2)
📝 examples/recursive-web-loader.py (+11 -21)
📝 permchain/channels/__init__.py (+3 -7)
permchain/channels/archive.py (+0 -94)
📝 permchain/channels/binop.py (+2 -0)
📝 permchain/channels/context.py (+2 -1)
permchain/channels/inbox.py (+0 -115)
📝 permchain/channels/last_value.py (+2 -0)
permchain/channels/topic.py (+76 -0)
📝 permchain/pregel/__init__.py (+8 -4)
📝 permchain/pregel/validate.py (+5 -4)
📝 poetry.lock (+66 -109)
📝 pyproject.toml (+0 -2)
📝 tests/test_channels.py (+86 -36)
📝 tests/test_pregel.py (+29 -115)
📝 tests/test_pregel_async.py (+37 -111)

📄 Description

  • Topic channel combines the features of Inbox, Archive, UniqueInbox, UniqueArchive, which have been removed.

🔄 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/15 **Author:** [@nfcampos](https://github.com/nfcampos) **Created:** 11/4/2023 **Status:** ✅ Merged **Merged:** 11/4/2023 **Merged by:** [@nfcampos](https://github.com/nfcampos) **Base:** `main` ← **Head:** `nc/4nov/channel-topic` --- ### 📝 Commits (1) - [`7f76fbb`](https://github.com/langchain-ai/langgraph/commit/7f76fbb699dd3662654b4d5219dcae3ebaf0ba27) Create a Topic channel, Make LastValue the default channel if not specified, Add default input and output keys ### 📊 Changes **19 files changed** (+385 additions, -700 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+8 -9) 📝 `examples/combine_docs.ipynb` (+47 -45) 📝 `examples/draft-revise-loop.py` (+3 -25) 📝 `examples/readme.py` (+0 -2) 📝 `examples/recursive-web-loader.py` (+11 -21) 📝 `permchain/channels/__init__.py` (+3 -7) ➖ `permchain/channels/archive.py` (+0 -94) 📝 `permchain/channels/binop.py` (+2 -0) 📝 `permchain/channels/context.py` (+2 -1) ➖ `permchain/channels/inbox.py` (+0 -115) 📝 `permchain/channels/last_value.py` (+2 -0) ➕ `permchain/channels/topic.py` (+76 -0) 📝 `permchain/pregel/__init__.py` (+8 -4) 📝 `permchain/pregel/validate.py` (+5 -4) 📝 `poetry.lock` (+66 -109) 📝 `pyproject.toml` (+0 -2) 📝 `tests/test_channels.py` (+86 -36) 📝 `tests/test_pregel.py` (+29 -115) 📝 `tests/test_pregel_async.py` (+37 -111) </details> ### 📄 Description - Topic channel combines the features of Inbox, Archive, UniqueInbox, UniqueArchive, which have been removed. --- <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:05 -05:00
yindo closed this issue 2026-02-20 17:44:05 -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#1170