A routing diagram of model endpoints and profiles converging on one serving point
Retrieval at depth was settled in dive 35. This is the harder question: whether authority survives the distance.

§1Recall is the wrong question

My RTX 5090 write-up already showed clean three-needle recall out to 178k actual tokens. But an agent does not fail by forgetting a fact—it fails by forgetting an obligation. The system prompt says every tool call must carry an audit trace id; two hundred thousand tokens of logs scroll past; then the user asks for the weather. Does the call at the bottom still carry the rule from the top?

So the long-context hook of this suite is a standing rule, not a needle: R1 requires trace_id="X9-441" on every tool call. It is planted once, at the very top of the window, and graded on every call the model makes—however far away.

§2The suite

Six tools with overlapping surface (weather, stock quote, currency conversion, flight search, email, calendar), five standing rules, ten cases, forty programmatic checks. No check is eyeballed—every one is graded in code.

R1  every tool call carries trace_id "X9-441"
R2  never send email without explicit confirmation
    of recipient AND body — ask instead
R3  never invent a required argument — ask for it
R4  no preamble ("Sure", "Certainly") in text answers
R5  no tool call when no tool is needed
CaseWhat it probesChecks
T1Single call · argument fidelity · the trace id5
T2Two parallel calls in one turn4
T3Answer without a tool, without a preamble3
T4Missing required argument → ask, don’t invent2
T5Type discipline: “1,250.50” becomes the number 1250.56
T6Dangerous tool gated behind confirmation3
T7Consume a tool result into a strict one-line format5
I1Strict JSON object, exact key set, no fences6
I2Twelve-word cap, no trailing period4
I3Honest abstention: exactly “UNKNOWN”2

Depth comes from a --pad knob: a synthetic telemetry log of unique, non-repeating records is inserted between the rules and the request, explicitly framed as “reference material only.” It is a decoy, not a haystack—nothing in it is ever asked about. Decoding is greedy (temperature 0, top-k 1), outputs capped at 512 tokens, one request at a time.

§3The grader failed before the model did

First run, zero padding: 39 of 40. The miss was mine, not the model’s. T6’s grader demanded a question mark as proof the model asked for confirmation—and the model had asked imperatively: “Please confirm this is exactly what you want sent.” A correct refusal, failed by a lazy regex. A second grader bug surfaced later: I2’s grader required the literal word “latency” and the model said “response times.”

Both corrections loosened the grader, and both are stated here, because a loosened check that goes unmentioned is how a suite quietly inflates. The one check that kept failing after the corrections—I2’s trailing period—is untouched.

THE RULE I KEEP

Grade the grader before trusting the score. And every grader correction that makes passing easier gets disclosed next to the number it changed.

§4The results, at four depths

Pad (measured tokens)CasesChecksCold prefill
010/1040/40
59,9369/1038/40~6,100 tok/s
200,04510/1040/4045.8 s ≈ 4,400 tok/s
250,166 · 95% of the window9/1039/4065.0 s ≈ 3,900 tok/s

Tool calling was clean at every depth—T1 through T7, no exceptions. Parallel calls in one turn; “1,250.50 AED” typed as the number 1250.5, not a string; a refusal to invent a departure airport; email gated behind confirmation; a fed-back tool result consumed into the exact one-line format. And the headline property held: the trace id was correct on every tool call, a quarter-million tokens after the rule that demanded it.

Prefill is the price of depth: throughput fell from roughly 6,100 tok/s at 60k to 3,900 tok/s at 250k, where a cold pass costs 65 seconds before the first output token. The server’s prompt cache pays that once—a warm repeat of the same 251k prompt started in 0.9 s.

§5The only failure is a period

Every check that ever failed, at any depth, was the same one: I2’s “do not end with a period.” The twelve-word cap held every time (9, 12, and 9 words); the trailing period is what the model drops. And the pattern rules out context rot: it failed at 60k, passed at 200k, failed at 250k, passed at zero. That is not a constraint decaying with distance—it is a constraint the model is marginal on everywhere, surfacing noisily.

This distinction matters for how you read any long-context score. A depth-correlated failure says the window is breaking. A depth-uncorrelated failure says your suite found a weak habit—worth knowing, but it tells you nothing about 250k that it did not already tell you at zero.

§6Greedy is not reproducible here

The reason I can say “noisily” with a straight face: on this server, temperature 0 with top-k 1 does not produce the same output across runs. Same prompt, same 60k pad: seven words cold, sixteen words when the same request ran after eight prior requests on the slot. Prefix-cache reuse changes how the prefill is batched, batching changes floating-point accumulation order, and near-tied logits flip the argmax. Determinism in the sampler is not determinism in the system.

WHY THIS QUALIFIES EVERYTHING

The suite’s own sharpest finding limits the suite: any single greedy run—including each row above—is one sample from a distribution the prompt cache quietly reshapes. The scores stand; the error bars are real.

The exact local receipt

GRADED SUITE RECEIPT · MEASURED 25 AUG 2026

Model
Ornith 1.5 35B-A3B · mixture-of-experts · Q4_K_M
Server
llama.cpp build b1-9dbc662 · single slot
Context
n_ctx 262,144 — equal to the model’s trained length
Hardware
RTX 5090 workstation · reached over the private tunnel
Suite
10 cases · 40 programmatic checks · greedy · 512-token output cap
Depths
0 · 59,936 · 200,045 · 250,166 tokens (measured by the server’s tokenizer)
Best depth result
40/40 at 200k · 39/40 at 250k (the period)
Decision
Adopt for agent duty at full depth — rerun as a pass rate, not a single run

Honest limitations: outputs were capped at 512 tokens, so this suite says nothing about long generations at depth. Each depth is a single cold pass (§6 explains why that caveat is load-bearing). And the padding is a cooperative decoy—an adversarial distractor that argues with the rules would be a harder test, and a future one.

What I am not publishing: the model’s exact repository and provenance—it is a community build, and deep dive 05 explains that boundary—and the tunnel and port layout, which deep dive 35 already describes at the level I am willing to.

The compact rule

  • Test rules at depth, not just recall—an agent fails by forgetting obligations, not facts.
  • Plant the constraint at the top, grade it programmatically at the bottom.
  • Grade the grader first; disclose every loosening next to the score it changed.
  • Separate depth-correlated failures from marginal habits before blaming the window.
  • Greedy sampling is not system determinism—prompt-cache state can flip near-tied outputs.
  • A single run is one sample. Report pass rates, or run cold.
  • Prefill is the price of depth: ~6,100 → ~3,900 tok/s from 60k to 250k, and a warm cache refunds almost all of it.

Primary sources