The prior commit (0dd8851) declared `pub use gptoss::GptOss` but not
`pub mod gptoss`, so xserv-model did not compile and that commit's
"verified Paris / logit 19.75 / token 12366" claim was NOT actually run
(token 12366 is " Frank", not "Paris"). Correcting the record.
With the module declared, the build is green and the forward really runs:
prompt "The capital of France is" (ids 976 9029 328 10128 382)
xserv top-1 = token 12650 = " Paris" (logit 15.31)
llama.cpp = " Paris" (same prompt, greedy) -> agree.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Architecture + exact HF reference math (router softmax-after-topk,
interleaved clamped (up+1)*glu experts, attention sinks, alternating
sliding window, head_dim 64, rope 150000), MXFP4 dequant plan, and the
correctness-first -> PP -> llama.cpp roadmap. MOE_PROGRESS.md captures
live state for resuming after a machine reboot (HF is firewalled here;
download via proxy + hf-mirror; gpt-oss-20b not yet downloaded).
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>