From 085395c824b2cdbbe9449a1763e09459f48a771f Mon Sep 17 00:00:00 2001 From: vbarda Date: Wed, 4 Dec 2024 19:04:42 -0500 Subject: [PATCH] rename --- docs/docs/concepts/low_level.md | 2 +- docs/docs/how-tos/{graph-command.ipynb => command.ipynb} | 0 docs/docs/how-tos/index.md | 2 +- docs/mkdocs.yml | 2 +- 4 files changed, 3 insertions(+), 3 deletions(-) rename docs/docs/how-tos/{graph-command.ipynb => command.ipynb} (100%) diff --git a/docs/docs/concepts/low_level.md b/docs/docs/concepts/low_level.md index 3b3806a97..fab9c3e03 100644 --- a/docs/docs/concepts/low_level.md +++ b/docs/docs/concepts/low_level.md @@ -380,7 +380,7 @@ def my_node(state: State) -> Command[Literal["my_other_node", "__end__"]]: return Command(goto="__end__") ``` -Check out this [how-to guide](../how-tos/graph-command.ipynb) for an end-to-end example of how to use `Command`. +Check out this [how-to guide](../how-tos/command.ipynb) for an end-to-end example of how to use `Command`. ## Persistence diff --git a/docs/docs/how-tos/graph-command.ipynb b/docs/docs/how-tos/command.ipynb similarity index 100% rename from docs/docs/how-tos/graph-command.ipynb rename to docs/docs/how-tos/command.ipynb diff --git a/docs/docs/how-tos/index.md b/docs/docs/how-tos/index.md index 1c60818ae..297bfd3e0 100644 --- a/docs/docs/how-tos/index.md +++ b/docs/docs/how-tos/index.md @@ -20,7 +20,7 @@ These how-to guides show how to achieve that controllability. - [How to create branches for parallel execution](branching.ipynb) - [How to create map-reduce branches for parallel execution](map-reduce.ipynb) - [How to control graph recursion limit](recursion-limit.ipynb) -- [How to combine control flow and state updates with GraphCommand](graph-command.ipynb) +- [How to combine control flow and state updates with Command](command.ipynb) ### Persistence diff --git a/docs/mkdocs.yml b/docs/mkdocs.yml index 882e3cdfd..bc1ff59ea 100644 --- a/docs/mkdocs.yml +++ b/docs/mkdocs.yml @@ -151,7 +151,7 @@ nav: - how-tos/branching.ipynb - how-tos/map-reduce.ipynb - how-tos/recursion-limit.ipynb - - how-tos/graph-command.ipynb + - how-tos/command.ipynb - Persistence: - Persistence: how-tos#persistence - how-tos/persistence.ipynb