mirror of
https://github.com/turnstonelabs/turnstone.git
synced 2026-08-23 12:24:46 -06:00
bc49954c3a
* feat(reasoning): Phase 5 — vLLM Chat Completions reasoning-field replay Multi-turn CoT replay for vLLM-served reasoning models (Qwen3, DeepSeek-R1) via the non-standard `reasoning` field on assistant messages. Closes the PR #498 gap claiming Chat Completions has no replay surface — vLLM's ChatMessage.reasoning input field is that surface (verified in vllm/entrypoints/openai/chat_completion/protocol.py:54-64). Session-level attach (no provider class changes). Three-gate composite: provider isinstance OpenAIChatCompletionsProvider AND server_compat.server_type == "vllm" AND operator-set ModelConfig.replay_reasoning_to_model. Deliberately drops the supports_reasoning_replay capability gate that protects Paths 1+2 — vLLM's failure mode is silent (template-drop), not loud (server 400), so the static gate would add operator friction without preventing the silent failure. Server-type pin bounds blast radius — canonical OpenAI, llama.cpp, sglang never see the non-standard field. Also fixes a pre-existing _resolve_server_type bug: it read cfg.capabilities.get("server_compat") but the model_registry loader pops server_compat OUT of capabilities into the dedicated cfg.server_compat dataclass field (model_registry.py:401, 485). Pre-fix the function returned "" for every production ModelConfig, silently degrading PR #498 Path 3's synth-block source tag and would have made Phase 5 dead-on- arrival. Test stubs across 3 files updated to mirror production shape (empty capabilities + populated top-level server_compat) so the same stub-drift can't hide future regressions. The agent _run_agent path is deliberately excluded from Phase 5 hoists: agent assistant messages don't carry _provider_content (rebuilt per invocation from CompletionResult.content + tool_calls), so the helper would no-op every turn. Comment at session.py inside _api_call documents the exclusion. OpenAI SDK version pin raised to >=2.37 to match the version verified by the cross-boundary regression test (test_reasoning_field_present_in_wire_body_when_attached) — drives a real OpenAI client through httpx MockTransport and asserts the non-standard field reaches the captured POST body, catching any future SDK version that adds runtime field filtering. Tests: 10 helper unit + 17 session integration (incl. SDK boundary round-trip + per-gate negative tests + call-site wiring tests) + 2 audit-log discipline tests extending the PR #498 logging contract. * docs(reasoning): apply PR #537 review on Phase 5 docstrings Two nits from PR #537 review: 1. `_resolve_server_type` docstring claimed Phase 5 (`_maybe_attach_vllm_chat_reasoning`) called it; in fact Phase 5 reads `cfg.server_compat["server_type"]` directly off the single cfg it fetches for the operator-flag check, to avoid a second `registry.get_config` round-trip. Rewrite the paragraph: name `_maybe_synth_reasoning_block` as the sole caller (informational metadata for UI rehydration), then a separate paragraph noting Phase 5 reads the same field path directly and that both readers MUST stay aligned on changes. 2. `_maybe_attach_vllm_chat_reasoning` docstring referenced `project_reasoning_replay_capability_gate.md` which lives in personal memory store, not the repo. Replace the dead-link reference with an inline summary of the asymmetry rationale (Paths 1+2 keep the dual-gate because loud server-side failures; Path C drops the static gate because vLLM's failure mode is template-drop silent).
364 lines
16 KiB
Python
364 lines
16 KiB
Python
"""Tests for ChatSession synthetic ``reasoning_text`` block stamping (Phase 3 path 3).
|
|
|
|
Path 3 covers OpenAI Chat Completions endpoints — vLLM with
|
|
``--reasoning-parser``, llama.cpp with ``reasoning_format``, Gemini's
|
|
``/v1beta/openai/`` endpoint, and any other server that surfaces
|
|
``delta.reasoning_content`` Pydantic extras. These have no native
|
|
provider_blocks shape on the wire, so ``ChatSession._stream_response``
|
|
captures the streamed reasoning text into ``reasoning_parts`` and
|
|
``_maybe_synth_reasoning_block`` stamps it onto ``_provider_content``
|
|
as a synthetic ``{type: "reasoning_text"}`` block at the end of the
|
|
turn.
|
|
|
|
These tests pin:
|
|
1. The synthesizer fires only when no native blocks were emitted AND
|
|
reasoning was captured (Anthropic + OpenAI Responses bypass it).
|
|
2. ``source`` field is tagged with the active model's server_type
|
|
(informational; pulled from ``server_compat.server_type``).
|
|
3. ``OpenAIChatCompletionsProvider.extract_reasoning_text`` round-trips
|
|
the synthetic block on history rehydration.
|
|
4. The synthetic shape is NOT in ``ANTHROPIC_VALID_BLOCK_TYPES`` so
|
|
cross-model resumption (local-model → Anthropic) falls through
|
|
cleanly to the text+tool_calls rebuild path.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from types import SimpleNamespace
|
|
from typing import Any
|
|
|
|
from tests._session_helpers import make_session as _make_session
|
|
from turnstone.core.providers._anthropic import (
|
|
ANTHROPIC_VALID_BLOCK_TYPES,
|
|
AnthropicProvider,
|
|
)
|
|
from turnstone.core.providers._openai_chat import OpenAIChatCompletionsProvider
|
|
|
|
|
|
class TestMaybeSynthReasoningBlock:
|
|
"""Direct unit tests for ``ChatSession._maybe_synth_reasoning_block``."""
|
|
|
|
def test_no_synth_when_provider_blocks_present(self) -> None:
|
|
# Anthropic / OpenAI Responses path — native blocks already
|
|
# carry the reasoning, no synth needed.
|
|
session = _make_session()
|
|
existing = [{"type": "thinking", "thinking": "x"}]
|
|
out = session._maybe_synth_reasoning_block(existing, ["should not be added"])
|
|
assert out is existing
|
|
|
|
def test_no_synth_when_reasoning_parts_empty(self) -> None:
|
|
session = _make_session()
|
|
out = session._maybe_synth_reasoning_block([], [])
|
|
assert out == []
|
|
|
|
def test_no_synth_when_reasoning_parts_only_whitespace(self) -> None:
|
|
session = _make_session()
|
|
out = session._maybe_synth_reasoning_block([], [" ", "\n\t"])
|
|
assert out == []
|
|
|
|
def test_synth_creates_reasoning_text_block(self) -> None:
|
|
session = _make_session()
|
|
out = session._maybe_synth_reasoning_block([], ["thought ", "process"])
|
|
assert len(out) == 1
|
|
assert out[0]["type"] == "reasoning_text"
|
|
assert out[0]["text"] == "thought process"
|
|
|
|
def test_synth_omits_source_when_no_server_type(self) -> None:
|
|
session = _make_session()
|
|
# No registry / no server_compat → source field omitted.
|
|
out = session._maybe_synth_reasoning_block([], ["text"])
|
|
assert "source" not in out[0]
|
|
|
|
def test_synth_includes_source_when_server_type_resolvable(self) -> None:
|
|
session = _make_session()
|
|
session._registry = SimpleNamespace(
|
|
get_config=lambda alias: SimpleNamespace(
|
|
capabilities={},
|
|
server_compat={"server_type": "vllm"},
|
|
)
|
|
)
|
|
session._model_alias = "qwen3-32b"
|
|
out = session._maybe_synth_reasoning_block([], ["text"])
|
|
assert out[0]["source"] == "vllm"
|
|
|
|
def test_synth_handles_registry_exception(self) -> None:
|
|
# _resolve_server_type silently returns "" on any lookup error
|
|
# — synth still fires but omits the source field.
|
|
class BrokenRegistry:
|
|
def get_config(self, alias: str) -> Any:
|
|
raise KeyError(alias)
|
|
|
|
session = _make_session()
|
|
session._registry = BrokenRegistry()
|
|
session._model_alias = "missing"
|
|
out = session._maybe_synth_reasoning_block([], ["text"])
|
|
assert out[0]["text"] == "text"
|
|
assert "source" not in out[0]
|
|
|
|
def test_synth_appends_when_provider_blocks_are_non_reasoning(self) -> None:
|
|
# GoogleProvider attaches raw tool_call dicts as provider_blocks
|
|
# on the finish chunk (for thought_signature round-trip). When
|
|
# the same turn streamed reasoning_delta (Gemini's reasoning_
|
|
# content extra), the synthesizer must APPEND the synthetic
|
|
# reasoning block rather than skip synthesis — otherwise the
|
|
# reasoning text is shown live but lost on page reload.
|
|
session = _make_session()
|
|
existing = [
|
|
{
|
|
"id": "call_1",
|
|
"type": "function",
|
|
"function": {"name": "search", "arguments": "{}"},
|
|
"thought_signature": "sig123",
|
|
}
|
|
]
|
|
out = session._maybe_synth_reasoning_block(existing, ["I should search"])
|
|
assert len(out) == 2
|
|
assert out[0] is existing[0] # tool_call fidelity block survives intact
|
|
assert out[1]["type"] == "reasoning_text"
|
|
assert out[1]["text"] == "I should search"
|
|
|
|
def test_no_synth_when_openai_responses_reasoning_already_present(self) -> None:
|
|
# OpenAI Responses native reasoning item — synth must NOT fire
|
|
# even though provider_blocks contains ALSO non-reasoning items
|
|
# (e.g. message blocks). The reasoning-bearing block satisfies
|
|
# the persistence contract on its own.
|
|
session = _make_session()
|
|
existing = [
|
|
{"type": "reasoning", "summary": [{"text": "openai reasoning"}]},
|
|
{"type": "message", "role": "assistant", "content": "answer"},
|
|
]
|
|
out = session._maybe_synth_reasoning_block(existing, ["live reasoning text"])
|
|
assert out is existing
|
|
|
|
def test_no_synth_when_non_reasoning_blocks_but_reasoning_parts_empty(self) -> None:
|
|
# Google tool_calls with no reasoning streamed — return as-is.
|
|
session = _make_session()
|
|
existing = [
|
|
{"id": "call_1", "type": "function", "function": {"name": "f", "arguments": "{}"}}
|
|
]
|
|
out = session._maybe_synth_reasoning_block(existing, [])
|
|
assert out is existing
|
|
|
|
|
|
class TestSyntheticBlockShapeContract:
|
|
"""The synthetic block shape MUST stay outside Anthropic's valid
|
|
block types so cross-model resumption falls through cleanly."""
|
|
|
|
def test_reasoning_text_not_in_anthropic_valid_types(self) -> None:
|
|
# If this assertion ever fails, the cross-model resumption
|
|
# safety story breaks: a synthetic block from a local-model
|
|
# session would reach Anthropic's wire as a malformed block.
|
|
assert "reasoning_text" not in ANTHROPIC_VALID_BLOCK_TYPES
|
|
|
|
def test_synthetic_block_falls_through_anthropic_shape_filter(self) -> None:
|
|
# Cross-model resumption regression: turn 1 was on a local
|
|
# model (synthetic block stamped), then the operator switched
|
|
# to Anthropic. The shape filter must reject the synthetic
|
|
# block and fall through to text+tool_calls rebuild.
|
|
provider = AnthropicProvider()
|
|
msg = {
|
|
"role": "assistant",
|
|
"content": "spoken answer",
|
|
"_provider_content": [
|
|
{"type": "reasoning_text", "text": "synth thought", "source": "vllm"},
|
|
],
|
|
}
|
|
_, converted = provider._convert_messages([msg])
|
|
assistant = next(m for m in converted if m["role"] == "assistant")
|
|
block_types = [b.get("type") for b in assistant["content"] if isinstance(b, dict)]
|
|
# Foreign block did NOT reach Anthropic's wire. Rebuilt from
|
|
# text only.
|
|
assert "reasoning_text" not in block_types
|
|
assert assistant["content"] == [{"type": "text", "text": "spoken answer"}]
|
|
|
|
|
|
class TestOpenAIChatExtractReasoningText:
|
|
"""``OpenAIChatCompletionsProvider.extract_reasoning_text`` reads
|
|
the synthetic block back out for UI rehydration."""
|
|
|
|
def test_reads_synthetic_reasoning_text_block(self) -> None:
|
|
provider = OpenAIChatCompletionsProvider()
|
|
blocks = [{"type": "reasoning_text", "text": "captured thought"}]
|
|
assert provider.extract_reasoning_text(blocks) == "captured thought"
|
|
|
|
def test_concatenates_multiple_blocks(self) -> None:
|
|
provider = OpenAIChatCompletionsProvider()
|
|
blocks = [
|
|
{"type": "reasoning_text", "text": "first"},
|
|
{"type": "reasoning_text", "text": "second"},
|
|
]
|
|
assert provider.extract_reasoning_text(blocks) == "first\nsecond"
|
|
|
|
def test_skips_other_block_types(self) -> None:
|
|
provider = OpenAIChatCompletionsProvider()
|
|
blocks = [
|
|
{"type": "thinking", "thinking": "anth"},
|
|
{"type": "reasoning", "summary": [{"text": "openai"}]},
|
|
{"type": "reasoning_text", "text": "chat"},
|
|
]
|
|
assert provider.extract_reasoning_text(blocks) == "chat"
|
|
|
|
def test_handles_empty_text_field(self) -> None:
|
|
provider = OpenAIChatCompletionsProvider()
|
|
blocks = [
|
|
{"type": "reasoning_text", "text": ""},
|
|
{"type": "reasoning_text", "text": "kept"},
|
|
]
|
|
assert provider.extract_reasoning_text(blocks) == "kept"
|
|
|
|
def test_handles_missing_text_field(self) -> None:
|
|
provider = OpenAIChatCompletionsProvider()
|
|
blocks = [
|
|
{"type": "reasoning_text"}, # no text
|
|
{"type": "reasoning_text", "text": "kept"},
|
|
]
|
|
assert provider.extract_reasoning_text(blocks) == "kept"
|
|
|
|
def test_returns_empty_for_no_synth_blocks(self) -> None:
|
|
provider = OpenAIChatCompletionsProvider()
|
|
blocks = [{"type": "thinking", "thinking": "x"}]
|
|
assert provider.extract_reasoning_text(blocks) == ""
|
|
|
|
|
|
class TestStreamResponseSynthBlockIntegration:
|
|
"""Integration test: drives a fake reasoning-emitting stream
|
|
through ``ChatSession._stream_response`` and asserts the
|
|
synthesizer wires up correctly. Pins the call site at
|
|
``session.py`` (where ``_maybe_synth_reasoning_block`` is invoked
|
|
on the assembled provider_blocks before stamping ``_provider_content``)
|
|
— without this, a future refactor that drops the synthesizer call
|
|
would silently break path-3 capture (vLLM/llama.cpp/Gemini-compat
|
|
reasoning would be visible live but invisible on history reload).
|
|
"""
|
|
|
|
def _make_stream(self, content: str, reasoning: str) -> Any:
|
|
"""Build an iterator of StreamChunks that mimic a path-3
|
|
capture (reasoning_delta chunks, content chunks, no
|
|
provider_blocks emitted).
|
|
"""
|
|
from turnstone.core.providers._protocol import StreamChunk, UsageInfo
|
|
|
|
chunks = []
|
|
# Reasoning first (matches live SSE order).
|
|
if reasoning:
|
|
chunks.append(StreamChunk(reasoning_delta=reasoning, is_first=True))
|
|
# Content next.
|
|
if content:
|
|
chunks.append(
|
|
StreamChunk(
|
|
content_delta=content,
|
|
is_first=not reasoning,
|
|
)
|
|
)
|
|
# Final chunk with finish_reason + usage.
|
|
chunks.append(
|
|
StreamChunk(
|
|
finish_reason="stop",
|
|
usage=UsageInfo(prompt_tokens=10, completion_tokens=20, total_tokens=30),
|
|
)
|
|
)
|
|
return iter(chunks)
|
|
|
|
def test_stream_response_stamps_synth_block_when_path3_reasoning_captured(
|
|
self,
|
|
) -> None:
|
|
"""Drive a fake stream emitting reasoning_delta chunks (no
|
|
native provider_blocks) through ``_stream_response``; assert
|
|
the resulting assistant_msg carries a synthetic reasoning_text
|
|
block stamped onto ``_provider_content``."""
|
|
session = _make_session()
|
|
# No registry → source field omitted from synth block.
|
|
stream = self._make_stream(content="Final answer.", reasoning="path-3 reasoning")
|
|
msg = session._stream_response(stream)
|
|
assert msg["role"] == "assistant"
|
|
assert msg["content"] == "Final answer."
|
|
# Synthetic block should be stamped onto _provider_content.
|
|
provider_content = msg.get("_provider_content")
|
|
assert isinstance(provider_content, list)
|
|
assert len(provider_content) == 1
|
|
assert provider_content[0]["type"] == "reasoning_text"
|
|
assert provider_content[0]["text"] == "path-3 reasoning"
|
|
|
|
def test_stream_response_no_synth_when_no_reasoning_captured(self) -> None:
|
|
"""Stream emits only content (no reasoning_delta). No synth
|
|
block stamped — _provider_content key absent on assistant_msg."""
|
|
session = _make_session()
|
|
stream = self._make_stream(content="just content", reasoning="")
|
|
msg = session._stream_response(stream)
|
|
assert msg["content"] == "just content"
|
|
# No synth block (and no native blocks either) → key absent.
|
|
assert "_provider_content" not in msg
|
|
|
|
def test_stream_response_synth_block_carries_source_when_server_type_resolvable(
|
|
self,
|
|
) -> None:
|
|
"""When the active model has server_compat.server_type set,
|
|
the synth block carries it as the ``source`` field."""
|
|
session = _make_session()
|
|
session._registry = SimpleNamespace(
|
|
get_config=lambda alias: SimpleNamespace(
|
|
capabilities={},
|
|
server_compat={"server_type": "vllm"},
|
|
)
|
|
)
|
|
session._model_alias = "qwen3-32b"
|
|
stream = self._make_stream(content="answer", reasoning="reasoning text")
|
|
msg = session._stream_response(stream)
|
|
provider_content = msg.get("_provider_content")
|
|
assert isinstance(provider_content, list)
|
|
assert provider_content[0]["source"] == "vllm"
|
|
|
|
|
|
class TestResolveServerType:
|
|
"""Direct unit tests for the helper that pulls server_type from
|
|
the active model's capabilities dict."""
|
|
|
|
def test_returns_empty_when_no_registry(self) -> None:
|
|
session = _make_session()
|
|
session._registry = None
|
|
assert session._resolve_server_type() == ""
|
|
|
|
def test_returns_empty_when_no_alias(self) -> None:
|
|
session = _make_session()
|
|
session._registry = SimpleNamespace(
|
|
get_config=lambda alias: SimpleNamespace(capabilities={}, server_compat={})
|
|
)
|
|
session._model_alias = ""
|
|
assert session._resolve_server_type() == ""
|
|
|
|
def test_returns_server_type_when_present(self) -> None:
|
|
# Mirrors production ModelConfig shape: server_compat lives at
|
|
# the top-level dataclass field, NOT inside capabilities. Both
|
|
# model_registry loader paths pop("server_compat") out of caps
|
|
# before construction (see model_registry.py:401, 485).
|
|
session = _make_session()
|
|
session._registry = SimpleNamespace(
|
|
get_config=lambda alias: SimpleNamespace(
|
|
capabilities={},
|
|
server_compat={"server_type": "llama.cpp"},
|
|
)
|
|
)
|
|
session._model_alias = "local-model"
|
|
assert session._resolve_server_type() == "llama.cpp"
|
|
|
|
def test_returns_empty_when_server_compat_missing(self) -> None:
|
|
session = _make_session()
|
|
session._registry = SimpleNamespace(
|
|
get_config=lambda alias: SimpleNamespace(
|
|
capabilities={"context_window": 32768},
|
|
server_compat={},
|
|
)
|
|
)
|
|
session._model_alias = "local-model"
|
|
assert session._resolve_server_type() == ""
|
|
|
|
def test_returns_empty_on_exception(self) -> None:
|
|
class BrokenRegistry:
|
|
def get_config(self, alias: str) -> Any:
|
|
raise RuntimeError("boom")
|
|
|
|
session = _make_session()
|
|
session._registry = BrokenRegistry()
|
|
session._model_alias = "x"
|
|
assert session._resolve_server_type() == ""
|