From eba8303c9843dfc8997acad64fc115e609d07b5e Mon Sep 17 00:00:00 2001 From: Isaac Francisco <78627776+isahers1@users.noreply.github.com> Date: Wed, 24 Jul 2024 16:57:17 -0700 Subject: [PATCH] display state management (#1127) --- docs/docs/how-tos/index.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/docs/how-tos/index.md b/docs/docs/how-tos/index.md index b1783e492..b5cedfc97 100644 --- a/docs/docs/how-tos/index.md +++ b/docs/docs/how-tos/index.md @@ -61,6 +61,13 @@ These guides show how to use different streaming modes. - [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) +## State Management + +- [Use Pydantic model as state](state-model.ipynb) +- [Use a context object in state](state-context-key.ipynb) +- [Have a separate input and output schema](input_output_schema.ipynb) +- [Pass private state between nodes inside the graph](pass_private_state.ipynb) + ## Other - [How to run graph asynchronously](async.ipynb)