From 3b30a6abae1edb2604c405c65be0e14daad8d65c Mon Sep 17 00:00:00 2001 From: Kent Overstreet Date: Fri, 20 Mar 2026 16:29:20 -0400 Subject: [PATCH] agents: raise in-flight exclusion threshold from 0.15 to 0.3 The lower threshold excluded too many neighbors, causing "query returned no results (after exclusion)" failures and underloading the GPU. Now only moderately-connected neighbors (score > 0.3) are excluded, balancing collision prevention with GPU utilization. Co-Authored-By: Claude Opus 4.6 (1M context) --- poc-memory/src/agents/daemon.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/poc-memory/src/agents/daemon.rs b/poc-memory/src/agents/daemon.rs index 0025901..75c1cb7 100644 --- a/poc-memory/src/agents/daemon.rs +++ b/poc-memory/src/agents/daemon.rs @@ -142,7 +142,7 @@ fn job_consolidation_agent( for (nbr, strength) in graph.neighbors(key) { let weight = store.nodes.get(nbr.as_str()) .map(|n| n.weight).unwrap_or(0.1); - if strength * weight > 0.15 { + if strength * weight > 0.3 { claimed_keys.push(nbr.clone()); locked.insert(nbr.clone()); }