[PR #109] [MERGED] Add prebuilt "tool calling executor" #1245

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

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/langgraph/pull/109
Author: @MidasKylix
Created: 2/13/2024
Status: Merged
Merged: 2/19/2024
Merged by: @nfcampos

Base: mainHead: tool_call


📝 Commits (10+)

📊 Changes

4 files changed (+647 additions, -18 deletions)

View changed files

📝 README.md (+0 -2)
📝 langgraph/prebuilt/chat_agent_executor.py (+148 -14)
📝 tests/test_pregel.py (+248 -1)
📝 tests/test_pregel_async.py (+251 -1)

📄 Description

Using tools and tool_calls is recommended instead, as the functions and function_call request parameters are officially marked as deprecated by OpenAI.


🔄 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/109 **Author:** [@MidasKylix](https://github.com/MidasKylix) **Created:** 2/13/2024 **Status:** ✅ Merged **Merged:** 2/19/2024 **Merged by:** [@nfcampos](https://github.com/nfcampos) **Base:** `main` ← **Head:** `tool_call` --- ### 📝 Commits (10+) - [`38ef3d5`](https://github.com/langchain-ai/langgraph/commit/38ef3d5218bd175c967760227006306ea0c6145d) replace function_call with tool_call - [`acaa456`](https://github.com/langchain-ai/langgraph/commit/acaa4567e158a184cd79cc648b4f19b5176087c2) fix test - [`88d4140`](https://github.com/langchain-ai/langgraph/commit/88d41401749de24fe4e881973acd5b30a75de954) Merge branch 'main' into tool_call - [`b4269f6`](https://github.com/langchain-ai/langgraph/commit/b4269f64536b0a78abc0d92c0f5f036a6522c75d) finish test - [`7cdae56`](https://github.com/langchain-ai/langgraph/commit/7cdae56e7e9e4c81b767a4cccceb0478b16f2396) test it - [`41ff4c8`](https://github.com/langchain-ai/langgraph/commit/41ff4c8c437c9f2f9ed351459eb739de02edb110) fix some errors - [`82ea95c`](https://github.com/langchain-ai/langgraph/commit/82ea95c3c0e2513ea8688badd837f447b7510ef4) Merge branch 'main' into tool_call - [`794cc71`](https://github.com/langchain-ai/langgraph/commit/794cc712549b57482850900ae817cdd6d34440ac) fixed - [`52df544`](https://github.com/langchain-ai/langgraph/commit/52df544dac6a94603544915b351752432edad96d) fix - [`6905242`](https://github.com/langchain-ai/langgraph/commit/69052426654105a3da224c3607ed8ab48aa13791) Merge branch 'main' into tool_call ### 📊 Changes **4 files changed** (+647 additions, -18 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+0 -2) 📝 `langgraph/prebuilt/chat_agent_executor.py` (+148 -14) 📝 `tests/test_pregel.py` (+248 -1) 📝 `tests/test_pregel_async.py` (+251 -1) </details> ### 📄 Description Using tools and tool_calls is recommended instead, as the `functions` and `function_call` request parameters are officially marked as deprecated by OpenAI. --- <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:16 -05:00
yindo closed this issue 2026-02-20 17:44:16 -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#1245