mirror of
https://github.com/pewdiepie-archdaemon/odysseus.git
synced 2026-06-15 09:15:29 -04:00
8 lines
252 B
Python
8 lines
252 B
Python
from pathlib import Path
|
|
|
|
|
|
def test_memory_list_implementations_do_not_truncate_results():
|
|
for path in ("mcp_servers/memory_server.py", "src/ai_interaction.py"):
|
|
source = Path(path).read_text()
|
|
assert "memories[:100]" not in source
|