[PR #417] [MERGED] Update How-tos #1457

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

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/langgraph/pull/417
Author: @hinthornw
Created: 5/7/2024
Status: Merged
Merged: 5/8/2024
Merged by: @hinthornw

Base: mainHead: wfh/how_tos


📝 Commits (10+)

📊 Changes

31 files changed (+6576 additions, -1838 deletions)

View changed files

📝 .github/workflows/deploy_docs.yml (+48 -31)
📝 docs/_scripts/copy_notebooks.py (+36 -8)
📝 docs/docs/how-tos/index.md (+20 -17)
📝 docs/docs/reference/checkpoints.md (+1 -1)
docs/docs/reference/errors.md (+6 -0)
📝 docs/mkdocs.yml (+18 -25)
📝 examples/async.ipynb (+155 -152)
📝 examples/branching.ipynb (+386 -130)
📝 examples/chat_agent_executor_with_function_calling/anthropic.ipynb (+1 -1)
📝 examples/chat_agent_executor_with_function_calling/base.ipynb (+2 -2)
📝 examples/chat_agent_executor_with_function_calling/dynamically-returning-directly.ipynb (+1 -1)
📝 examples/chat_agent_executor_with_function_calling/force-calling-a-tool-first.ipynb (+229 -42)
📝 examples/chat_agent_executor_with_function_calling/high-level-tools.ipynb (+1 -1)
📝 examples/chat_agent_executor_with_function_calling/human-in-the-loop.ipynb (+2 -2)
📝 examples/chat_agent_executor_with_function_calling/managing-agent-steps.ipynb (+1 -1)
📝 examples/chat_agent_executor_with_function_calling/prebuilt-tool-node.ipynb (+2 -2)
📝 examples/chat_agent_executor_with_function_calling/respond-in-format.ipynb (+1 -1)
examples/dynamically-returning-directly.ipynb (+612 -0)
examples/force-calling-a-tool-first.ipynb (+522 -0)
📝 examples/human-in-the-loop.ipynb (+139 -104)

...and 11 more files

📄 Description

  • reduce the number of API keys needed
  • make everything "tool use" oriented rather than split across agent executor, function calling, tool use, etc.
  • Reorg navbar and index
  • Fixup some docstrings
  • Add more links to ref docs

🔄 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/417 **Author:** [@hinthornw](https://github.com/hinthornw) **Created:** 5/7/2024 **Status:** ✅ Merged **Merged:** 5/8/2024 **Merged by:** [@hinthornw](https://github.com/hinthornw) **Base:** `main` ← **Head:** `wfh/how_tos` --- ### 📝 Commits (10+) - [`91e75c4`](https://github.com/langchain-ai/langgraph/commit/91e75c47ec7f0c648024efcf8ae0d2c5ac57c761) updste persistence - [`690dd80`](https://github.com/langchain-ai/langgraph/commit/690dd803a9c5ae30ffaefab6c85b7d63088d8364) Time travel update - [`11bd95c`](https://github.com/langchain-ai/langgraph/commit/11bd95ccd965a98f7db599ef2816a2f23ed12c24) Viz - [`fe1e14e`](https://github.com/langchain-ai/langgraph/commit/fe1e14e95fb88a105594a2831acd1bc559f6b767) note - [`3323be4`](https://github.com/langchain-ai/langgraph/commit/3323be470e4ef7618898e8ea1dfd892258e6a0cd) async - [`4e23359`](https://github.com/langchain-ai/langgraph/commit/4e23359496c998550044ce129a0f49acc65e6e9a) Streaming tokens update - [`ebaf9b5`](https://github.com/langchain-ai/langgraph/commit/ebaf9b5f0470a47ec6117ec07379d47e74157271) update branching doc - [`0dd2f28`](https://github.com/langchain-ai/langgraph/commit/0dd2f2850ba1166ec119367209649ce5b79a961f) Format - [`99ecb58`](https://github.com/langchain-ai/langgraph/commit/99ecb58dc3dc91b6d1092497c28915a5b9bb4fe5) Merge branch 'main' into wfh/how_tos - [`4577503`](https://github.com/langchain-ai/langgraph/commit/4577503620ced26e484205bb1c109930f803fa28) Link ### 📊 Changes **31 files changed** (+6576 additions, -1838 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/deploy_docs.yml` (+48 -31) 📝 `docs/_scripts/copy_notebooks.py` (+36 -8) 📝 `docs/docs/how-tos/index.md` (+20 -17) 📝 `docs/docs/reference/checkpoints.md` (+1 -1) ➕ `docs/docs/reference/errors.md` (+6 -0) 📝 `docs/mkdocs.yml` (+18 -25) 📝 `examples/async.ipynb` (+155 -152) 📝 `examples/branching.ipynb` (+386 -130) 📝 `examples/chat_agent_executor_with_function_calling/anthropic.ipynb` (+1 -1) 📝 `examples/chat_agent_executor_with_function_calling/base.ipynb` (+2 -2) 📝 `examples/chat_agent_executor_with_function_calling/dynamically-returning-directly.ipynb` (+1 -1) 📝 `examples/chat_agent_executor_with_function_calling/force-calling-a-tool-first.ipynb` (+229 -42) 📝 `examples/chat_agent_executor_with_function_calling/high-level-tools.ipynb` (+1 -1) 📝 `examples/chat_agent_executor_with_function_calling/human-in-the-loop.ipynb` (+2 -2) 📝 `examples/chat_agent_executor_with_function_calling/managing-agent-steps.ipynb` (+1 -1) 📝 `examples/chat_agent_executor_with_function_calling/prebuilt-tool-node.ipynb` (+2 -2) 📝 `examples/chat_agent_executor_with_function_calling/respond-in-format.ipynb` (+1 -1) ➕ `examples/dynamically-returning-directly.ipynb` (+612 -0) ➕ `examples/force-calling-a-tool-first.ipynb` (+522 -0) 📝 `examples/human-in-the-loop.ipynb` (+139 -104) _...and 11 more files_ </details> ### 📄 Description - reduce the number of API keys needed - make everything "tool use" oriented rather than split across agent executor, function calling, tool use, etc. - Reorg navbar and index - Fixup some docstrings - Add more links to ref docs --- <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:46 -05:00
yindo closed this issue 2026-02-20 17:44:46 -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#1457