From e3d36cd59b8b61b6e2d4afea086a3cb05257811c Mon Sep 17 00:00:00 2001 From: Eugene Yurtsev Date: Mon, 30 Jun 2025 11:24:02 -0400 Subject: [PATCH] Add part 6 raw translation --- .../tutorials/get-started/6-time-travel.md | 445 +++++++++++++++++- 1 file changed, 435 insertions(+), 10 deletions(-) diff --git a/docs/docs/tutorials/get-started/6-time-travel.md b/docs/docs/tutorials/get-started/6-time-travel.md index eabb46e4f..605a6581c 100644 --- a/docs/docs/tutorials/get-started/6-time-travel.md +++ b/docs/docs/tutorials/get-started/6-time-travel.md @@ -12,10 +12,17 @@ You can create these types of experiences using LangGraph's built-in **time trav ## 1. Rewind your graph +:::python Rewind your graph by fetching a checkpoint using the graph's `get_state_history` method. You can then resume execution at this previous point in time. +::: + +:::js +Rewind your graph by fetching a checkpoint using the graph's `getStateHistory` method. You can then resume execution at this previous point in time. +::: {% include-markdown "../../../snippets/chat_model_tabs.md" %} +:::python