mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-07-31 04:12:10 +03:00
The "recent" memory strategy maps to the internal "exact" retrieval path, whose post-query relevance filter (score > 0) silently dropped recent memories whose text didn't overlap the current prompt. Since the user-facing strategy enum is only recent|semantic|hybrid (no "exact"), forwarding the prompt as `query` for "recent" always engaged that filter, so recency-based injection returned nothing when the prompt was unrelated to the stored memory. Skip query forwarding for the "recent" strategy so retrieveMemories returns the most recent memories (ORDER BY created_at DESC) regardless of prompt overlap. Semantic/hybrid still forward the query for vector search. Fixes the chat-pipeline + memory-pipeline integration memory-injection tests.