From ad0b0323f38e7c85f7dd961a958771ff386de959 Mon Sep 17 00:00:00 2001 From: Evo Date: Sat, 20 Jun 2026 01:05:05 +0800 Subject: [PATCH] docs(python-client): drop removed 'opinion' fact type from recall()/arecall() v0.8.0 (#1917) removed the 'opinion' fact type; the recall()/arecall() docstrings still listed it while reflect()/areflect() in the same file were already corrected. --- hindsight-clients/python/hindsight_client/hindsight_client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hindsight-clients/python/hindsight_client/hindsight_client.py b/hindsight-clients/python/hindsight_client/hindsight_client.py index 63b9ede66..9b296991e 100644 --- a/hindsight-clients/python/hindsight_client/hindsight_client.py +++ b/hindsight-clients/python/hindsight_client/hindsight_client.py @@ -416,7 +416,7 @@ def recall( Args: bank_id: The memory bank ID query: Search query - types: Optional list of fact types to filter (world, experience, opinion, observation) + types: Optional list of fact types to filter (world, experience, observation) max_tokens: Maximum tokens in results (default: 4096) budget: Budget level for recall - "low", "mid", or "high" (default: "mid") trace: Enable trace output (default: False) @@ -890,7 +890,7 @@ async def arecall( Args: bank_id: The memory bank ID query: Search query - types: Optional list of fact types to filter (world, experience, opinion, observation) + types: Optional list of fact types to filter (world, experience, observation) max_tokens: Maximum tokens in results (default: 4096) budget: Budget level for recall - "low", "mid", or "high" (default: "mid") trace: Enable trace output (default: False)