[PR #392] [MERGED] Deprecate Chat agent executor & Function Calling Executro #1436

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

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/langgraph/pull/392
Author: @hinthornw
Created: 5/3/2024
Status: Merged
Merged: 5/4/2024
Merged by: @hinthornw

Base: mainHead: wfh/deprecate_old_executors


📝 Commits (10+)

📊 Changes

17 files changed (+883 additions, -775 deletions)

View changed files

📝 docs/docs/reference/checkpoints.md (+30 -0)
📝 docs/docs/reference/graphs.md (+3 -4)
📝 docs/docs/reference/prebuilt.md (+1 -10)
📝 examples/agent_executor/high-level.ipynb (+3 -336)
📝 examples/chat_agent_executor_with_function_calling/high-level.ipynb (+4 -104)
📝 examples/visualization.ipynb (+158 -209)
langgraph/_api/__init__.py (+0 -0)
langgraph/_api/deprecation.py (+34 -0)
📝 langgraph/checkpoint/aiosqlite.py (+138 -24)
📝 langgraph/checkpoint/memory.py (+85 -0)
📝 langgraph/checkpoint/sqlite.py (+200 -28)
📝 langgraph/graph/message.py (+92 -3)
📝 langgraph/graph/state.py (+5 -0)
📝 langgraph/prebuilt/agent_executor.py (+17 -15)
📝 langgraph/prebuilt/chat_agent_executor.py (+26 -4)
📝 langgraph/prebuilt/tool_executor.py (+53 -4)
📝 langgraph/prebuilt/tool_node.py (+34 -34)

📄 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/392 **Author:** [@hinthornw](https://github.com/hinthornw) **Created:** 5/3/2024 **Status:** ✅ Merged **Merged:** 5/4/2024 **Merged by:** [@hinthornw](https://github.com/hinthornw) **Base:** `main` ← **Head:** `wfh/deprecate_old_executors` --- ### 📝 Commits (10+) - [`4132fdf`](https://github.com/langchain-ai/langgraph/commit/4132fdf5dc9821cd20815758343333fe907e34eb) Deprecate function calling & chat agent executors - [`e83a2d4`](https://github.com/langchain-ai/langgraph/commit/e83a2d4fec5433f0681fb364d32937ad2d0a7bbd) merge - [`7770347`](https://github.com/langchain-ai/langgraph/commit/77703473580e08b1604793546027c71fd267bc3a) docfix - [`8c51ed0`](https://github.com/langchain-ai/langgraph/commit/8c51ed056639e97daca7ae22bbed4508263bd876) Add API deprecation warning - [`ba08298`](https://github.com/langchain-ai/langgraph/commit/ba08298f39267f8945776a33be99fe872a30c0fc) Rm from prebuilt - [`f9e23d9`](https://github.com/langchain-ai/langgraph/commit/f9e23d98b949afb079e0c2b51ceed0ad1c8b5571) Message Docstrings - [`3e344dd`](https://github.com/langchain-ai/langgraph/commit/3e344dd1af4decbbcc416bc8d0409676753ed239) Update docstrings - [`4e4efc5`](https://github.com/langchain-ai/langgraph/commit/4e4efc508f297f857cdfa542351789253e6ed2ed) message - [`da3bc49`](https://github.com/langchain-ai/langgraph/commit/da3bc493582d1820102a0a3ace0cbd209ba6ede1) More docstrings - [`a7e45c2`](https://github.com/langchain-ai/langgraph/commit/a7e45c22ea84c68c5619fa5374133fd9972d037a) sqlite docstrings ### 📊 Changes **17 files changed** (+883 additions, -775 deletions) <details> <summary>View changed files</summary> 📝 `docs/docs/reference/checkpoints.md` (+30 -0) 📝 `docs/docs/reference/graphs.md` (+3 -4) 📝 `docs/docs/reference/prebuilt.md` (+1 -10) 📝 `examples/agent_executor/high-level.ipynb` (+3 -336) 📝 `examples/chat_agent_executor_with_function_calling/high-level.ipynb` (+4 -104) 📝 `examples/visualization.ipynb` (+158 -209) ➕ `langgraph/_api/__init__.py` (+0 -0) ➕ `langgraph/_api/deprecation.py` (+34 -0) 📝 `langgraph/checkpoint/aiosqlite.py` (+138 -24) 📝 `langgraph/checkpoint/memory.py` (+85 -0) 📝 `langgraph/checkpoint/sqlite.py` (+200 -28) 📝 `langgraph/graph/message.py` (+92 -3) 📝 `langgraph/graph/state.py` (+5 -0) 📝 `langgraph/prebuilt/agent_executor.py` (+17 -15) 📝 `langgraph/prebuilt/chat_agent_executor.py` (+26 -4) 📝 `langgraph/prebuilt/tool_executor.py` (+53 -4) 📝 `langgraph/prebuilt/tool_node.py` (+34 -34) </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:43 -05:00
yindo closed this issue 2026-02-20 17:44:43 -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#1436