e4dcfc49aa
Tests / Import Check (Python 3.13) (push) Has been cancelled
Tests / Import Check (Python 3.14) (push) Has been cancelled
Tests / Python Tests (Python 3.11) (push) Has been cancelled
Tests / Python Tests (Python 3.12) (push) Has been cancelled
Tests / Python Tests (Python 3.14) (push) Has been cancelled
Tests / Test Summary (push) Has been cancelled
Tests / Lint and Format (push) Has been cancelled
Tests / Web Node Tests (push) Has been cancelled
Tests / Import Check (Python 3.11) (push) Has been cancelled
Tests / Import Check (Python 3.12) (push) Has been cancelled
Tests / Python Tests (Python 3.13) (push) Has been cancelled
61 lines
2.0 KiB
Python
61 lines
2.0 KiB
Python
"""The compressed-history summary must reach the final LLM messages.
|
|
|
|
Regression test: ``ContextBuilder`` emits the summary as a leading
|
|
``role: "system"`` entry in ``conversation_history``; the agentic pipeline
|
|
used to filter history to user/assistant roles, silently dropping it.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from deeptutor.agents.chat.agentic_pipeline import AgenticChatPipeline
|
|
from deeptutor.core.context import UnifiedContext
|
|
|
|
|
|
def test_summary_system_message_reaches_messages() -> None:
|
|
pipeline = AgenticChatPipeline(language="en")
|
|
context = UnifiedContext(
|
|
session_id="s1",
|
|
user_message="next question",
|
|
conversation_history=[
|
|
{"role": "system", "content": "earlier turns summary"},
|
|
{"role": "user", "content": "old question"},
|
|
{"role": "assistant", "content": "old answer"},
|
|
],
|
|
)
|
|
|
|
messages = pipeline._build_loop_messages(
|
|
context=context,
|
|
enabled_tools=[],
|
|
)
|
|
|
|
# The summary rides directly after the main system prompt, before history.
|
|
assert messages[1]["role"] == "system"
|
|
assert "earlier turns summary" in str(messages[1]["content"])
|
|
assert messages[2] == {"role": "user", "content": "old question"}
|
|
# Exactly one summary injection — no duplicates elsewhere.
|
|
summary_count = sum(
|
|
1
|
|
for m in messages[1:]
|
|
if m["role"] == "system" and "earlier turns summary" in str(m["content"])
|
|
)
|
|
assert summary_count == 1
|
|
|
|
|
|
def test_empty_system_entries_still_filtered() -> None:
|
|
pipeline = AgenticChatPipeline(language="en")
|
|
context = UnifiedContext(
|
|
session_id="s1",
|
|
user_message="q",
|
|
conversation_history=[
|
|
{"role": "system", "content": " "},
|
|
{"role": "user", "content": "old question"},
|
|
],
|
|
)
|
|
|
|
messages = pipeline._build_loop_messages(
|
|
context=context,
|
|
enabled_tools=[],
|
|
)
|
|
|
|
assert messages[1] == {"role": "user", "content": "old question"}
|