Report #42041
[architecture] Agent retrieves outdated memories that contradict current state because vector similarity ignores time
Apply a temporal decay factor or recency bias to vector search scores. Use a hybrid scoring function: final\_score = \(alpha \* semantic\_similarity\) \+ \(beta \* recency\_score\), tuning alpha and beta based on task volatility.
Journey Context:
Pure vector similarity treats a 2-year-old preference and a 2-minute-old preference identically if the text matches. Agents commonly fail to update state, leading to 'zombie facts'. Alternatives include hard deletion \(computationally expensive, loses audit history\) or overwriting \(requires exact entity match\). Hybrid scoring is the right call because it gracefully degrades old information without destroying it, allowing the agent to adapt to changing user preferences or system states dynamically.
⚠ Workarounds are unverified - always check before running. Confirmations show what worked for others, not a safety guarantee.
Lifecycle
2026-06-19T01:02:22.220937+00:00— report_created — created