[PR #296] [MERGED] Add prebuilt ToolNode, Make prebuilt create_tool_calling_executor compatible with any tool calling model #1363

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

📋 Pull Request Information

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

Base: mainHead: nc/10apr/tool-node


📝 Commits (4)

📊 Changes

10 files changed (+1785 additions, -491 deletions)

View changed files

examples/chat_agent_executor_with_function_calling/anthropic.ipynb (+417 -0)
examples/chat_agent_executor_with_function_calling/prebuilt-tool-node.ipynb (+543 -0)
📝 langgraph/prebuilt/__init__.py (+2 -0)
📝 langgraph/prebuilt/chat_agent_executor.py (+15 -70)
langgraph/prebuilt/tool_node.py (+96 -0)
📝 poetry.lock (+263 -13)
📝 pyproject.toml (+3 -2)
📝 tests/__snapshots__/test_pregel.ambr (+19 -19)
📝 tests/test_pregel.py (+325 -278)
📝 tests/test_pregel_async.py (+102 -109)

📄 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/296 **Author:** [@nfcampos](https://github.com/nfcampos) **Created:** 4/10/2024 **Status:** ✅ Merged **Merged:** 4/11/2024 **Merged by:** [@nfcampos](https://github.com/nfcampos) **Base:** `main` ← **Head:** `nc/10apr/tool-node` --- ### 📝 Commits (4) - [`7dafc09`](https://github.com/langchain-ai/langgraph/commit/7dafc09a5bfc1b87efb97d28e9c65a6dbba7e805) Add prebuilt ToolNode - [`89a1416`](https://github.com/langchain-ai/langgraph/commit/89a14160b0bb7756f4b359c019fb30b695c96d92) Apply suggestions from code review - [`c8d3f73`](https://github.com/langchain-ai/langgraph/commit/c8d3f73d0463cebb74580762cbdacf39426066c6) Lint - [`92deae4`](https://github.com/langchain-ai/langgraph/commit/92deae4196e5e00fe73c40a88446e3667c5151f3) Add anthropic notebook ### 📊 Changes **10 files changed** (+1785 additions, -491 deletions) <details> <summary>View changed files</summary> ➕ `examples/chat_agent_executor_with_function_calling/anthropic.ipynb` (+417 -0) ➕ `examples/chat_agent_executor_with_function_calling/prebuilt-tool-node.ipynb` (+543 -0) 📝 `langgraph/prebuilt/__init__.py` (+2 -0) 📝 `langgraph/prebuilt/chat_agent_executor.py` (+15 -70) ➕ `langgraph/prebuilt/tool_node.py` (+96 -0) 📝 `poetry.lock` (+263 -13) 📝 `pyproject.toml` (+3 -2) 📝 `tests/__snapshots__/test_pregel.ambr` (+19 -19) 📝 `tests/test_pregel.py` (+325 -278) 📝 `tests/test_pregel_async.py` (+102 -109) </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:33 -05:00
yindo closed this issue 2026-02-20 17:44:33 -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#1363