mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-07-25 17:18:11 +00:00
Regression test for the exact issue #61932 report: head + an 8-message protected tail made exclusively of oversized tool pairs. Pre-fix, compress_start >= compress_end made compress() a pure no-op and the retry loop ended in 'Cannot compress further'; post-fix the Phase-1 pressure demotion reclaims the tail in one pass while preserving tool_call/tool_result pairing.
295 lines
11 KiB
Python
295 lines
11 KiB
Python
"""Algorithmic reproduction and regression for issue #61932.
|
|
|
|
After several in-place compactions a tool-heavy session can be short enough
|
|
that nearly every remaining message sits inside the protected recent tail,
|
|
yet those messages are huge completed ``read_file`` / tool outputs. The
|
|
middle compress window is then empty or tiny, preflight makes no material
|
|
token progress, and the turn dies with::
|
|
|
|
Context length exceeded (174,833 tokens). Cannot compress further.
|
|
|
|
This is the core compressor contract — not Desktop/Windows-specific.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from unittest.mock import patch
|
|
|
|
import pytest
|
|
|
|
from agent.context_compressor import (
|
|
ContextCompressor,
|
|
_MAX_TAIL_MESSAGE_FLOOR,
|
|
_PRESSURE_KEEP_RECENT_MESSAGES,
|
|
)
|
|
from agent.model_metadata import estimate_messages_tokens_rough
|
|
from agent.turn_context import _compression_made_progress
|
|
|
|
|
|
def _unique_tool_pair(i: int, chars: int) -> list[dict]:
|
|
"""Assistant tool_call + unique tool result (no dedupe shortcut)."""
|
|
body = f"FILE_{i}_START\n" + (f"line {i} unique payload " * (chars // 22))[:chars]
|
|
return [
|
|
{
|
|
"role": "assistant",
|
|
"content": None,
|
|
"tool_calls": [
|
|
{
|
|
"id": f"call_{i}",
|
|
"type": "function",
|
|
"function": {
|
|
"name": "read_file",
|
|
"arguments": f'{{"path":"f{i}.py"}}',
|
|
},
|
|
}
|
|
],
|
|
},
|
|
{
|
|
"role": "tool",
|
|
"tool_call_id": f"call_{i}",
|
|
"content": body,
|
|
},
|
|
]
|
|
|
|
|
|
def _already_compacted_session(
|
|
*,
|
|
n_pairs: int,
|
|
tool_chars: int,
|
|
user_chars: int,
|
|
) -> list[dict]:
|
|
"""Shape after multiple in-place compactions: head + handoff + heavy tail."""
|
|
msgs: list[dict] = [
|
|
{"role": "system", "content": "You are Hermes."},
|
|
{"role": "user", "content": "Investigate thoroughly"},
|
|
{"role": "assistant", "content": "OK"},
|
|
{
|
|
"role": "user",
|
|
"content": (
|
|
"[CONTEXT COMPACTION — REFERENCE ONLY]\n"
|
|
+ ("Prior findings. " * 200)
|
|
),
|
|
},
|
|
{"role": "assistant", "content": "Continuing from compacted context."},
|
|
]
|
|
for i in range(n_pairs):
|
|
msgs.extend(_unique_tool_pair(i, tool_chars))
|
|
msgs.append(
|
|
{
|
|
"role": "user",
|
|
"content": "Full structured report:\n" + ("U" * user_chars),
|
|
}
|
|
)
|
|
return msgs
|
|
|
|
|
|
@pytest.fixture()
|
|
def compressor_128k():
|
|
with patch(
|
|
"agent.context_compressor.get_model_context_length",
|
|
return_value=128_000,
|
|
):
|
|
c = ContextCompressor(
|
|
model="openai-codex/gpt-test",
|
|
threshold_percent=0.50,
|
|
summary_target_ratio=0.20,
|
|
protect_first_n=3,
|
|
protect_last_n=20,
|
|
quiet_mode=True,
|
|
config_context_length=128_000,
|
|
)
|
|
c._generate_summary = lambda *a, **k: "compact summary of earlier investigation"
|
|
return c
|
|
|
|
|
|
class TestProtectedTailPressure61932:
|
|
def test_pressure_constants_aligned_with_tail_floor(self):
|
|
assert _MAX_TAIL_MESSAGE_FLOOR == 8
|
|
assert _PRESSURE_KEEP_RECENT_MESSAGES == 3
|
|
assert _PRESSURE_KEEP_RECENT_MESSAGES <= _MAX_TAIL_MESSAGE_FLOOR
|
|
|
|
def test_prune_demotes_protected_tail_when_tool_bodies_dominate(
|
|
self, compressor_128k
|
|
):
|
|
"""Protected-region tool bodies that blow the soft budget must demote.
|
|
|
|
With protect_last_n=20 and only ~14 messages, the old floor treated
|
|
every remaining tool result as sacred and prune was a pure no-op.
|
|
"""
|
|
c = compressor_128k
|
|
msgs = _already_compacted_session(
|
|
n_pairs=4, tool_chars=200_000, user_chars=80_000
|
|
)
|
|
before = estimate_messages_tokens_rough(msgs)
|
|
assert before > c.context_length
|
|
|
|
pruned, n = c._prune_old_tool_results(
|
|
msgs,
|
|
protect_tail_count=c.protect_last_n,
|
|
protect_tail_tokens=c.tail_token_budget,
|
|
)
|
|
after = estimate_messages_tokens_rough(pruned)
|
|
|
|
assert n >= 1, "pressure demotion should touch at least one tool body"
|
|
assert after < before * 0.5, (
|
|
f"expected large reclaim from protected-tail demotion: "
|
|
f"{before:,} → {after:,}"
|
|
)
|
|
# Active user ask must remain verbatim.
|
|
assert pruned[-1]["role"] == "user"
|
|
assert pruned[-1]["content"].startswith("Full structured report:")
|
|
assert "U" * 100 in pruned[-1]["content"]
|
|
|
|
def test_pressure_last_resort_demotes_newest_oversized_tool_result(
|
|
self, compressor_128k
|
|
):
|
|
"""The newest tool body is demoted when it alone exceeds the ceiling."""
|
|
c = compressor_128k
|
|
old_pair = _unique_tool_pair(0, 1_000)
|
|
newest_pair = _unique_tool_pair(1, 4_000)
|
|
newest_content = newest_pair[1]["content"]
|
|
msgs = [
|
|
*old_pair,
|
|
*newest_pair,
|
|
{"role": "user", "content": "Use those results."},
|
|
]
|
|
|
|
pruned, n = c._prune_old_tool_results(
|
|
msgs,
|
|
protect_tail_count=c.protect_last_n,
|
|
protect_tail_tokens=100, # soft ceiling = 150 tokens
|
|
)
|
|
|
|
# The earlier pressure pass first demotes call_0. The newest body
|
|
# remains over the soft ceiling by itself, forcing the documented
|
|
# absolute-last-resort branch to demote call_1 as well.
|
|
assert n == 2
|
|
assert pruned[1]["content"] != old_pair[1]["content"]
|
|
assert pruned[3]["content"] != newest_content
|
|
assert len(pruned[3]["content"]) < len(newest_content)
|
|
assert pruned[3]["tool_call_id"] == "call_1"
|
|
assert pruned[-1] == msgs[-1]
|
|
|
|
def test_compress_escapes_cannot_compress_further_dead_end(
|
|
self, compressor_128k
|
|
):
|
|
"""Full compress path must materially reduce an over-context tail.
|
|
|
|
Reproduces the #61932 failure class: multipass compression previously
|
|
dropped a couple of message rows while leaving ~170k tokens intact,
|
|
then reported no further progress.
|
|
"""
|
|
c = compressor_128k
|
|
msgs = _already_compacted_session(
|
|
n_pairs=4, tool_chars=200_000, user_chars=80_000
|
|
)
|
|
rough0 = estimate_messages_tokens_rough(msgs)
|
|
assert rough0 > c.context_length
|
|
|
|
cur = msgs
|
|
tok = rough0
|
|
last_progress = False
|
|
for _pass in range(3):
|
|
o_len, o_tok = len(cur), tok
|
|
out = c.compress(list(cur), current_tokens=tok)
|
|
n_tok = estimate_messages_tokens_rough(out)
|
|
last_progress = _compression_made_progress(
|
|
o_len, len(out), o_tok, n_tok
|
|
)
|
|
cur, tok = out, n_tok
|
|
if n_tok < c.threshold_tokens and n_tok < c.context_length:
|
|
break
|
|
|
|
assert tok < c.context_length, (
|
|
f"still over context after compression: {tok:,} >= {c.context_length:,}"
|
|
)
|
|
assert tok < rough0 * 0.5, (
|
|
f"compression did not reclaim enough headroom: {rough0:,} → {tok:,}"
|
|
)
|
|
# Either we recovered under threshold, or the last pass still made
|
|
# progress (never a pure no-op dead-end above the window).
|
|
assert tok < c.threshold_tokens or last_progress
|
|
|
|
def test_all_oversized_tail_dead_end_shape_now_compresses(
|
|
self, compressor_128k
|
|
):
|
|
"""Exact #61932 dead-end: the protected tail ALONE holds everything.
|
|
|
|
Head (3 messages) + an 8-message tail of exclusively oversized tool
|
|
pairs. The tail token budget + the ``_MAX_TAIL_MESSAGE_FLOOR`` (8)
|
|
floor protect every non-head message, so ``compress_start >=
|
|
compress_end`` — pre-fix ``compress()`` returned the transcript
|
|
UNCHANGED, incremented ``_ineffective_compression_count``, and the
|
|
retry loop died with "Cannot compress further". Post-fix the Phase-1
|
|
pressure pass demotes the oversized tool bodies even though the
|
|
summary window is empty, so the same call materially shrinks the
|
|
transcript below the context window.
|
|
"""
|
|
c = compressor_128k
|
|
msgs: list[dict] = [
|
|
{"role": "system", "content": "You are Hermes."},
|
|
{"role": "user", "content": "Investigate thoroughly"},
|
|
{"role": "assistant", "content": "OK"},
|
|
]
|
|
for i in range(4):
|
|
msgs.extend(_unique_tool_pair(i, 200_000))
|
|
assert len(msgs) == 11 # 3 head + 8-message all-oversized tail
|
|
|
|
before = estimate_messages_tokens_rough(msgs)
|
|
assert before > c.context_length, "fixture must start over-context"
|
|
|
|
out = c.compress(list(msgs), current_tokens=before)
|
|
after = estimate_messages_tokens_rough(out)
|
|
|
|
# The dead-end is broken: one pass reclaims the bulk of the tail.
|
|
assert after < c.context_length, (
|
|
f"still over context: {after:,} >= {c.context_length:,}"
|
|
)
|
|
assert after < before * 0.25, (
|
|
f"expected the oversized tail to demote: {before:,} → {after:,}"
|
|
)
|
|
|
|
# tool_call/tool_result pairing must survive demotion — never orphan
|
|
# a tool result or a tool call (provider 400s otherwise). Whole
|
|
# pairs may legitimately be summarized away together.
|
|
call_ids = {
|
|
tc["id"]
|
|
for m in out
|
|
if m.get("role") == "assistant"
|
|
for tc in (m.get("tool_calls") or [])
|
|
if isinstance(tc, dict)
|
|
}
|
|
tool_result_ids = [
|
|
m.get("tool_call_id") for m in out if m.get("role") == "tool"
|
|
]
|
|
assert tool_result_ids, "expected surviving tool pairs in the tail"
|
|
for rid in tool_result_ids:
|
|
assert rid in call_ids, f"orphaned tool result {rid!r}"
|
|
for cid in call_ids:
|
|
assert cid in tool_result_ids, f"orphaned tool call {cid!r}"
|
|
|
|
def test_light_tail_still_keeps_recent_tool_bodies(self, compressor_128k):
|
|
"""Pressure demotion must not fire on a normal-sized protected tail."""
|
|
c = compressor_128k
|
|
msgs = _already_compacted_session(
|
|
n_pairs=2, tool_chars=800, user_chars=200
|
|
)
|
|
before_tools = [
|
|
m["content"]
|
|
for m in msgs
|
|
if m.get("role") == "tool" and isinstance(m.get("content"), str)
|
|
]
|
|
pruned, n = c._prune_old_tool_results(
|
|
msgs,
|
|
protect_tail_count=c.protect_last_n,
|
|
protect_tail_tokens=c.tail_token_budget,
|
|
)
|
|
after_tools = [
|
|
m["content"]
|
|
for m in pruned
|
|
if m.get("role") == "tool" and isinstance(m.get("content"), str)
|
|
]
|
|
assert after_tools, "expected tool messages to remain"
|
|
# Light unique bodies fit inside the soft budget — none should demote.
|
|
assert n == 0
|
|
assert after_tools == before_tools
|