mirror of
https://github.com/pewdiepie-archdaemon/odysseus.git
synced 2026-06-22 04:35:29 -04:00
58 lines
1.9 KiB
Python
58 lines
1.9 KiB
Python
"""Memory consolidation must delete only memories the model explicitly drops.
|
|
|
|
The AI tidy path computed deletions as the complement of the model's `keep`
|
|
list, so any memory the model simply omitted (a common LLM lapse) was silently
|
|
deleted. The fix honors the explicit `drop` set, so an omitted memory survives.
|
|
"""
|
|
import asyncio
|
|
import json
|
|
|
|
import src.builtin_actions as ba
|
|
|
|
|
|
class _FakeMM:
|
|
saved = None
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
pass
|
|
|
|
def load_all(self):
|
|
return [
|
|
{"id": "a", "owner": "alice", "text": "Likes dark roast coffee", "category": "preference"},
|
|
{"id": "b", "owner": "alice", "text": "Likes dark roast coffee too", "category": "preference"},
|
|
{"id": "c", "owner": "alice", "text": "Lives in Cairo", "category": "fact"},
|
|
]
|
|
|
|
def save(self, entries):
|
|
_FakeMM.saved = list(entries)
|
|
|
|
|
|
def test_omitted_memory_survives_only_explicit_drop(monkeypatch):
|
|
import src.memory
|
|
import src.llm_core
|
|
import src.task_endpoint
|
|
|
|
_FakeMM.saved = None
|
|
monkeypatch.setattr(src.memory, "MemoryManager", _FakeMM)
|
|
monkeypatch.setattr(
|
|
src.task_endpoint, "resolve_task_candidates",
|
|
lambda owner=None: [("http://x/v1", "model", {})],
|
|
)
|
|
|
|
async def fake_llm(_candidates, **kwargs):
|
|
# Model keeps 'a', drops 'b', and OMITS 'c' entirely.
|
|
return json.dumps({
|
|
"keep": [{"id": "a", "text": "Likes dark roast coffee", "category": "preference"}],
|
|
"drop": [{"id": "b", "reason": "duplicate of a"}],
|
|
})
|
|
|
|
monkeypatch.setattr(src.llm_core, "llm_call_async_with_fallback", fake_llm)
|
|
|
|
msg, ok = asyncio.run(ba.action_consolidate_memory("alice"))
|
|
|
|
assert ok, msg
|
|
ids = {m["id"] for m in _FakeMM.saved}
|
|
assert "c" in ids, "omitted memory must NOT be deleted"
|
|
assert "a" in ids
|
|
assert "b" not in ids, "explicitly dropped memory should be removed"
|