Add guide on handling tool calling errors (#1012)

* Fix example

CC @vbarda

* Progress on tool calling errors

* Update

* Rename

* Format

* Clean up outputs

* Revert

* Use stream instead of invoke for final example
This commit is contained in:
Jacob Lee
2024-07-15 23:22:50 -07:00
committed by GitHub
parent 2a1cdd31c5
commit 449b42717c
4 changed files with 546 additions and 0 deletions
+1
View File
@@ -38,6 +38,7 @@ _MANUAL = {
"subgraph.ipynb",
"force-calling-a-tool-first.ipynb",
"pass-run-time-values-to-tools.ipynb",
"tool-calling-errors.ipynb",
"dynamic-returning-direct.ipynb",
"managing-agent-steps.ipynb",
"respond-in-format.ipynb",
+1
View File
@@ -59,6 +59,7 @@ These guides show how to use different streaming modes.
- [How to visualize your graph](visualization.ipynb)
- [How to add runtime configuration to your graph](configuration.ipynb)
- [How to pass runtime values to tools](pass-run-time-values-to-tools.ipynb)
- [How to handle tool calling errors](tool-calling-errors.ipynb)
- [How to use a Pydantic model as your state](state-model.ipynb)
- [How to use a context object in state](state-context-key.ipynb)
+1
View File
@@ -157,6 +157,7 @@ nav:
- Visualize your graph: how-tos/visualization.ipynb
- Add runtime configuration: how-tos/configuration.ipynb
- Pass runtime values to tools: how-tos/pass-run-time-values-to-tools.ipynb
- Handle tool calling errors: how-tos/tool-calling-errors.ipynb
- Use Pydantic model as state: how-tos/state-model.ipynb
- Use a context object in state: how-tos/state-context-key.ipynb
- Prebuilt ReAct Agent:
File diff suppressed because one or more lines are too long