refactor(agent): drop unused tail_start param from _derive_auto_focus_topic

The parameter was reserved-but-unused (del'd immediately); YAGNI. Test
call site updated.
This commit is contained in:
Teknium
2026-06-11 23:03:52 -07:00
parent 434c684bfa
commit c7bee8f961
2 changed files with 2 additions and 4 deletions
+1 -1
View File
@@ -166,7 +166,7 @@ def test_auto_focus_skips_context_summary_handoff():
{"role": "assistant", "content": "Latest tail response"},
]
focus_topic = compressor._derive_auto_focus_topic(messages, tail_start=1)
focus_topic = compressor._derive_auto_focus_topic(messages)
assert "OpenViking" in focus_topic
assert "Bybit" not in focus_topic