feat(loop): explicit mitigation for retrieval failure modes - #222
Open
raymondginger2018-sudo wants to merge 1 commit into
Open
feat(loop): explicit mitigation for retrieval failure modes#222raymondginger2018-sudo wants to merge 1 commit into
raymondginger2018-sudo wants to merge 1 commit into
Conversation
Contributor
Author
设计说明问题:RAG/记忆检索存在三类典型失败:相似度阈值过严(漏召回)、过松(噪声召回)、排序不稳定(同一查询多次结果不同)。失败时 agent 通常静默降级或直接报错,没有显式处理。 解法: 关键设计决策:
依赖说明:本文件 import 了 测试建议:对三类失败模式各构造一组检索结果,验证分类正确 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds explicit handling for three failure modes an agent memory loop must face:
assert_all_injected()self-checkDesign
{similarity, content, ...}core.loop.injection_regression(PR feat(loop): prompt-injection regression suite (pure mechanism) #216) for the no-memory fallback, keeping untrusted memory content isolatedFile
core/loop/memory_retrieval.py(new, 135 lines)Part of GenAI lesson 15 memory-loop quality family.