[PR #8] [MERGED] Nc/pregel #1165

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/8
Author: @nfcampos
Created: 10/13/2023
Status: Merged
Merged: 10/22/2023
Merged by: @nfcampos

Base: mainHead: nc/pregel


📝 Commits (10+)

📊 Changes

32 files changed (+3748 additions, -2262 deletions)

View changed files

📝 Makefile (+1 -1)
📝 README.md (+36 -25)
examples/draft-revise-loop.py (+134 -0)
📝 examples/old/example.ipynb (+0 -0)
📝 examples/old/research/researcher.py (+0 -0)
📝 examples/old/research/single_question_researcher.py (+0 -0)
📝 examples/old/research/webscraper.py (+0 -0)
📝 examples/old/web-research.ipynb (+0 -0)
examples/readme.py (+16 -0)
examples/recursive-web-loader.py (+122 -0)
examples/run_over_dataset.py (+0 -0)
examples/runnable-pubsub.py (+0 -138)
📝 permchain/__init__.py (+3 -8)
permchain/channels/__init__.py (+19 -0)
permchain/channels/base.py (+61 -0)
permchain/channels/binop.py (+62 -0)
permchain/channels/context.py (+97 -0)
permchain/channels/inbox.py (+113 -0)
permchain/channels/last_value.py (+57 -0)
permchain/channels/stream.py (+87 -0)

...and 12 more files

📄 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/8 **Author:** [@nfcampos](https://github.com/nfcampos) **Created:** 10/13/2023 **Status:** ✅ Merged **Merged:** 10/22/2023 **Merged by:** [@nfcampos](https://github.com/nfcampos) **Base:** `main` ← **Head:** `nc/pregel` --- ### 📝 Commits (10+) - [`851e8f8`](https://github.com/langchain-ai/langgraph/commit/851e8f88dd586717d99b3a5e9822b765c5a8a3f7) WIP - [`c5d42ed`](https://github.com/langchain-ai/langgraph/commit/c5d42ed09bc1a65f9731b8032d8aa75732cfa5f3) Update mypy and langchain - [`2b04283`](https://github.com/langchain-ai/langgraph/commit/2b04283c96c468d572d6577db60d95d07dae33a4) It works! - [`8a35811`](https://github.com/langchain-ai/langgraph/commit/8a3581126235eafb7844b8c176a61adcbc2e814a) Lint - [`12c203f`](https://github.com/langchain-ai/langgraph/commit/12c203f3a30f5e95e46d3ff2b3c9d6132231e5fa) Add tests - [`065a1a6`](https://github.com/langchain-ai/langgraph/commit/065a1a6e15ca5279a5693a7686da79f4c5e81a0b) Fix async impl - [`25dce1f`](https://github.com/langchain-ai/langgraph/commit/25dce1ff583020f570fdbfb882794e707519da86) Update readme - [`725c416`](https://github.com/langchain-ai/langgraph/commit/725c416511af44b74a0524d1a79abb406de13aac) Improve docstrings - [`6633d58`](https://github.com/langchain-ai/langgraph/commit/6633d58521bc70f5378e6dda61b9b236624674a4) python <3.11 compat - [`5c16190`](https://github.com/langchain-ai/langgraph/commit/5c1619076d7f8e0ec3d49fddfbfaa33e36971d80) Update API ### 📊 Changes **32 files changed** (+3748 additions, -2262 deletions) <details> <summary>View changed files</summary> 📝 `Makefile` (+1 -1) 📝 `README.md` (+36 -25) ➕ `examples/draft-revise-loop.py` (+134 -0) 📝 `examples/old/example.ipynb` (+0 -0) 📝 `examples/old/research/researcher.py` (+0 -0) 📝 `examples/old/research/single_question_researcher.py` (+0 -0) 📝 `examples/old/research/webscraper.py` (+0 -0) 📝 `examples/old/web-research.ipynb` (+0 -0) ➕ `examples/readme.py` (+16 -0) ➕ `examples/recursive-web-loader.py` (+122 -0) ➖ `examples/run_over_dataset.py` (+0 -0) ➖ `examples/runnable-pubsub.py` (+0 -138) 📝 `permchain/__init__.py` (+3 -8) ➕ `permchain/channels/__init__.py` (+19 -0) ➕ `permchain/channels/base.py` (+61 -0) ➕ `permchain/channels/binop.py` (+62 -0) ➕ `permchain/channels/context.py` (+97 -0) ➕ `permchain/channels/inbox.py` (+113 -0) ➕ `permchain/channels/last_value.py` (+57 -0) ➕ `permchain/channels/stream.py` (+87 -0) _...and 12 more files_ </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: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#1165