From c0e6d5cfb3fa0123fa38f3ddce06105f8ccbabdb Mon Sep 17 00:00:00 2001 From: Kent Overstreet Date: Sun, 22 Mar 2026 16:28:00 -0400 Subject: [PATCH] distill: limit:1 to process one neighborhood per prompt With limit:10, all seeds' neighborhoods got concatenated into one massive prompt (878KB+), exceeding the model's context. One seed at a time keeps prompts well under budget. Co-Authored-By: Claude Opus 4.6 (1M context) --- poc-memory/agents/distill.agent | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/poc-memory/agents/distill.agent b/poc-memory/agents/distill.agent index 71f7c50..2f6d479 100644 --- a/poc-memory/agents/distill.agent +++ b/poc-memory/agents/distill.agent @@ -1,4 +1,4 @@ -{"agent":"distill","query":"all | type:semantic | sort:degree | limit:10","model":"sonnet","schedule":"daily"} +{"agent":"distill","query":"all | type:semantic | sort:degree | limit:1","model":"sonnet","schedule":"daily"} {{node:core-personality}}