From 42c341b5908b2d3acec3df11539e6eae1a772a02 Mon Sep 17 00:00:00 2001 From: Iris Clawd Date: Wed, 1 Apr 2026 22:05:58 +0000 Subject: [PATCH] fix: correct broken persistence link in conversational flows docs --- docs/en/concepts/flows.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/concepts/flows.mdx b/docs/en/concepts/flows.mdx index ea482f199..1772b7354 100644 --- a/docs/en/concepts/flows.mdx +++ b/docs/en/concepts/flows.mdx @@ -724,7 +724,7 @@ The `request_input` method can return: #### Auto-Checkpoint Behavior -When [persistence](/concepts/flows-persistence) is configured, the flow state is automatically saved **before** each `self.ask()` call. If the process restarts while waiting for input, the flow can resume from the checkpoint without losing progress. +When [persistence](#flow-persistence) is configured, the flow state is automatically saved **before** each `self.ask()` call. If the process restarts while waiting for input, the flow can resume from the checkpoint without losing progress. #### `self.ask()` vs `@human_feedback`