From 54a5e45d217a7fcffca0fee01236f9a1051bb6a0 Mon Sep 17 00:00:00 2001 From: Eugene Yurtsev Date: Wed, 11 Dec 2024 12:37:54 -0500 Subject: [PATCH] x --- docs/docs/concepts/human_in_the_loop.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/docs/concepts/human_in_the_loop.md b/docs/docs/concepts/human_in_the_loop.md index 7f7576501..2f246a8da 100644 --- a/docs/docs/concepts/human_in_the_loop.md +++ b/docs/docs/concepts/human_in_the_loop.md @@ -105,7 +105,7 @@ thread_config = {"configurable": {"thread_id": "some_id"}} graph.invoke(Command(resume=True), config=thread_config) ``` -See [how to review tool calls](../../how-tos/human_in_the_loop/review-tool-calls) for a more detailed example. +See [how to review tool calls](../how-tos/human_in_the_loop/review-tool-calls) for a more detailed example. ### Review & Edit State @@ -150,7 +150,7 @@ graph.invoke( ) ``` -See [How to wait for user input using interrupt](../../how-tos/human_in_the_loop/wait-user-input) for a more detailed example. +See [How to wait for user input using interrupt](../how-tos/human_in_the_loop/wait-user-input) for a more detailed example. ### Review Tool Calls @@ -193,7 +193,7 @@ def human_review_node(state) -> Command[Literal["call_llm", "run_tool"]]: return Command(goto="call_llm", update={"messages": [feedback_msg]}) ``` -See [how to review tool calls](../../how-tos/human_in_the_loop/review-tool-calls) for a more detailed example. +See [how to review tool calls](../how-tos/human_in_the_loop/review-tool-calls) for a more detailed example. ### Multi-turn conversation