From e12eb5e141f4175e505a8af33608507fa991c014 Mon Sep 17 00:00:00 2001 From: r266-tech Date: Thu, 30 Apr 2026 06:13:11 +0800 Subject: [PATCH 1/2] docs(python-sdk): document retain_async kwarg per #1306 --- hindsight-docs/docs/sdks/python.md | 1 + 1 file changed, 1 insertion(+) diff --git a/hindsight-docs/docs/sdks/python.md b/hindsight-docs/docs/sdks/python.md index 86b4419b1..ded83d4bc 100644 --- a/hindsight-docs/docs/sdks/python.md +++ b/hindsight-docs/docs/sdks/python.md @@ -77,6 +77,7 @@ client.retain( timestamp=datetime(2024, 1, 15), document_id="conversation_001", metadata={"source": "slack"}, + retain_async=False, # Set True for background processing ) ``` From 54c666c4653ab478f5dbaf5b85be7d1ba7418582 Mon Sep 17 00:00:00 2001 From: r266-tech Date: Thu, 30 Apr 2026 06:13:19 +0800 Subject: [PATCH 2/2] docs(python-sdk-mirror): document retain_async kwarg per #1306 --- skills/hindsight-docs/references/sdks/python.md | 1 + 1 file changed, 1 insertion(+) diff --git a/skills/hindsight-docs/references/sdks/python.md b/skills/hindsight-docs/references/sdks/python.md index 86b4419b1..ded83d4bc 100644 --- a/skills/hindsight-docs/references/sdks/python.md +++ b/skills/hindsight-docs/references/sdks/python.md @@ -77,6 +77,7 @@ client.retain( timestamp=datetime(2024, 1, 15), document_id="conversation_001", metadata={"source": "slack"}, + retain_async=False, # Set True for background processing ) ```