From ad31da06d128a6f2bd1193d8829ba8787d06ef2f Mon Sep 17 00:00:00 2001 From: Chester Curme Date: Mon, 5 Aug 2024 13:34:30 -0400 Subject: [PATCH] update script + index + mkdocs --- docs/_scripts/copy_notebooks.py | 1 + docs/docs/how-tos/index.md | 1 + docs/mkdocs.yml | 1 + 3 files changed, 3 insertions(+) diff --git a/docs/_scripts/copy_notebooks.py b/docs/_scripts/copy_notebooks.py index b0f06cb67..00c0f1464 100644 --- a/docs/_scripts/copy_notebooks.py +++ b/docs/_scripts/copy_notebooks.py @@ -43,6 +43,7 @@ _MANUAL = { "tool-calling.ipynb", "tool-calling-errors.ipynb", "pass-config-to-tools.ipynb", + "many-tools.ipynb", "dynamic-returning-direct.ipynb", "managing-agent-steps.ipynb", "respond-in-format.ipynb", diff --git a/docs/docs/how-tos/index.md b/docs/docs/how-tos/index.md index b5cedfc97..f301ff934 100644 --- a/docs/docs/how-tos/index.md +++ b/docs/docs/how-tos/index.md @@ -60,6 +60,7 @@ These guides show how to use different streaming modes. - [How to handle tool calling errors](tool-calling-errors.ipynb) - [How to pass graph state to tools](pass-run-time-values-to-tools.ipynb) - [How to pass config to tools](pass-config-to-tools.ipynb) +- [How to handle large numbers of tools](many-tools.ipynb) ## State Management diff --git a/docs/mkdocs.yml b/docs/mkdocs.yml index 7ea4ae6f4..a55211bcf 100644 --- a/docs/mkdocs.yml +++ b/docs/mkdocs.yml @@ -157,6 +157,7 @@ nav: - Handle tool calling errors: how-tos/tool-calling-errors.ipynb - Pass graph state to tools: how-tos/pass-run-time-values-to-tools.ipynb - Pass config to tools: how-tos/pass-config-to-tools.ipynb + - Handle large numbers of tools: how-tos/many-tools.ipynb - State Management: - Use Pydantic model as state: how-tos/state-model.ipynb - Use a context object in state: how-tos/state-context-key.ipynb