Status reconciliation — September 11, 2026 (Schulman)
Partially addressed by merged #882 (9a16366). Fully proved mixed length-stop/terminal-tail cases are supported. The original real tool-call captures whose parsed projection omits sampled output were explicitly not unblocked by that renderer shortcut.
Remaining: resolve the selected experiment's raw captured-token coverage/adoption while preserving sampled IDs/logprobs and explicit manual-history support. The opt-in experiment raw-capture policy and CPU evidence are not a general ART provenance restriction or GPU equivalence proof. #883/#885 concerns default sampled-lineage attribution and remains a separate held decision.
Planned lane: Schulman and subagents, queued with experiment correctness. Keep this issue open for the uncovered captures rather than describing #882 as either unmerged or a complete fix.
Historical report (preserved):
A valid captured Chat Completions history can lose exact conditioning when a length-stopped response is followed by a terminal response that needs a synthetic stop. This composes two supported cases from #868/#871.
An actual Caladan049 K4 rollout on ART1ce5d7213 reproduced this before training: the first response contains2,048 sampled tokens and finish_reason=length; the later response contains2,048 sampled tokens and finish_reason=tool_calls without a recognized captured terminator. Its later captured prompt retains the entire earlier13,598-token prompt and all2,048 sampled output tokens exactly. There is no missing capture or inconsistent continuation.
_history_needs_synthetic_stop() returns true for the whole history, so _tokenize_chat_view() skips its exact length-boundary path. Rendering produces17,737 tokens with non-EXACT conditioning before sampled tokens and differs from the captured prefix at token20. Caladan's strict raw-conditioning fence correctly refuses this tensorization. All eight raw rollouts are preserved privately; one history is affected. No optimizer update occurred in that failed arm.
The correction should prove boundaries per source: keep all captured prompt/output IDs and sampled logprobs; preserve the renderer-owned terminal tail and natural-stop attribution; retain strict nonterminal length-boundary/context/projection checks. Removing the global check alone drops the synthetic tail and is insufficient. No loss change, truncation, dropped rollout or sampling change is appropriate.
A narrow local candidate plus a composed-history public-tokenization regression is in review. Exact captured-data CPU differential and original failure receipts are retained privately; no GPU retry is implied by this issue.
Status reconciliation — September 11, 2026 (Schulman)
Partially addressed by merged #882 (9a16366). Fully proved mixed length-stop/terminal-tail cases are supported. The original real tool-call captures whose parsed projection omits sampled output were explicitly not unblocked by that renderer shortcut.
Remaining: resolve the selected experiment's raw captured-token coverage/adoption while preserving sampled IDs/logprobs and explicit manual-history support. The opt-in experiment raw-capture policy and CPU evidence are not a general ART provenance restriction or GPU equivalence proof. #883/#885 concerns default sampled-lineage attribution and remains a separate held decision.
Planned lane: Schulman and subagents, queued with experiment correctness. Keep this issue open for the uncovered captures rather than describing #882 as either unmerged or a complete fix.
Historical report (preserved):
A valid captured Chat Completions history can lose exact conditioning when a length-stopped response is followed by a terminal response that needs a synthetic stop. This composes two supported cases from #868/#871.
An actual Caladan049 K4 rollout on ART1ce5d7213 reproduced this before training: the first response contains2,048 sampled tokens and
finish_reason=length; the later response contains2,048 sampled tokens andfinish_reason=tool_callswithout a recognized captured terminator. Its later captured prompt retains the entire earlier13,598-token prompt and all2,048 sampled output tokens exactly. There is no missing capture or inconsistent continuation._history_needs_synthetic_stop()returns true for the whole history, so_tokenize_chat_view()skips its exact length-boundary path. Rendering produces17,737 tokens with non-EXACT conditioning before sampled tokens and differs from the captured prefix at token20. Caladan's strict raw-conditioning fence correctly refuses this tensorization. All eight raw rollouts are preserved privately; one history is affected. No optimizer update occurred in that failed arm.The correction should prove boundaries per source: keep all captured prompt/output IDs and sampled logprobs; preserve the renderer-owned terminal tail and natural-stop attribution; retain strict nonterminal length-boundary/context/projection checks. Removing the global check alone drops the synthetic tail and is insufficient. No loss change, truncation, dropped rollout or sampling change is appropriate.
A narrow local candidate plus a composed-history public-tokenization regression is in review. Exact captured-data CPU differential and original failure receipts are retained privately; no GPU retry is implied by this issue.