Ship the Qwen3.8-Flash-Next model page, default and AgentX-only / 新增 Qwen3.8-Flash-Next 模型页面,并改为 default 与仅 AgentX 场景 - #889
Merged
Conversation
…AgentX-only Three changes that finish the model addition. /model/qwen-3-8-flash-next was a 404: getModelPageSlugs filters the compare slugs to those with a content file, and the model had none. Adds content/models/qwen-3-8-flash-next.mdx following the existing page shape, with a Qwen4 architecture section as its centrepiece, since the checkpoint is an architecture preview rather than a scale-up and that is the reason to read about it: - N-gram embedding as a second parameter-scaling axis: 20M bigram/trigram embeddings at layer 2, 51B parameters, bought with a table lookup instead of a matrix multiply, which is a different trade from MoE when HBM binds first. - Qwen Sparse Attention selecting at micro-block level under a fixed budget of 512 blocks or 2048 tokens, so attention cost stops tracking context length. - The gated residual, with its element-wise read gate and per-branch scalar write gate over 4 branches at bottleneck rank 320. - The inherited 3:1 Gated DeltaNet hybrid and the 1-layer MTP head, plus why AgentX applies a separately measured acceptance length to it. Every figure is cited to the model card; the vendor eval table carries the Nemotron 3 Ultra baseline and % better columns per the convention in #876, and a caveats section states that the scores are vendor-reported, that precision differs by chip generation, and that the 125B headline is the main model rather than the checkpoint. The model also moves from `experimental` to `default` so it appears in the /overview matrix from day zero, and is curated AgentX-only in OVERVIEW_MODEL_SCENARIOS alongside Kimi K3 and GLM 5.2 so it does not claim a fixed-sequence row it will never fill. The overview fixture test pins the full matrix, so its expectation gains `Qwen3.8-Flash-Next/agentx`, and the api-route-catalog digest for overview-data.ts is refreshed after confirming the change touches only the curated model-to-scenario map. 中文:三处改动完成该模型的接入。`/model/qwen-3-8-flash-next` 此前为 404,因为 getModelPageSlugs 只保留有内容文件的 slug;本次新增 content/models/qwen-3-8-flash-next.mdx,并以 Qwen4 架构一节为核心:n-gram embedding 作为第二条参数扩展轴(第 2 层的 2000 万条 bigram/trigram、51B 参数,用查表而非矩阵 乘法换取容量)、在「512 blocks 或 2048 tokens」固定预算下按微块选择的 Qwen Sparse Attention、带元素级读门与分支标量写门的 gated residual(4 分支、瓶颈秩 320),以及 沿用的 3:1 Gated DeltaNet 混合结构与单层 MTP 头。所有数据均引用 model card;厂商评测 表按 #876 的约定附带 Nemotron 3 Ultra 基线与百分比差距列,并在注意事项中说明分数由 厂商自报、精度随芯片代际不同,以及 125B 仅指主模型。同时将模型由 `experimental` 改为 `default` 并在 OVERVIEW_MODEL_SCENARIOS 中登记为仅 AgentX 场景,相应更新 overview fixture 预期与 overview-data.ts 的摘要哈希。
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
This comment has been minimized.
This comment has been minimized.
Adding a default model adds a matrix row, and the AgentX-only curation makes it exactly one. MATRIX_ROWS moves 8 -> 9, which is what CI reported against the overview fixtures. 中文:新增 default 模型会为 overview 矩阵增加一行,而仅 AgentX 的策展使其恰好为一行。 MATRIX_ROWS 由 8 改为 9,与 CI 基于 overview fixture 的实际结果一致。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Three changes that finish the Qwen3.8-Flash-Next addition started in #887.
1.
/model/qwen-3-8-flash-nextwas a 404 — fixedgetModelPageSlugs()filters the compare slugs down to those that have acontent/models/<slug>.mdx, and the model had none, so the route never generated. Adds the page, following the shape of the existing model deep-dives (Overview → Architecture → eval scores → benchmark explanations → caveats).Verified: the page prerenders to
.next/server/app/model/qwen-3-8-flash-next.htmlwith all six sections present.2. A Qwen4 architecture section, as the centrepiece
You asked for depth here, and it is the right emphasis: Qwen positions this checkpoint as "architectural innovation for sustainable AGI progress, departing from the scaling-focused approach of simply increasing parameters and context windows." The architecture is the reason to read about the model, so it gets its own section rather than a bullet list:
Every figure is cited to the model card. The vendor eval table carries the Nemotron 3 Ultra and % better columns per the convention merged in #876 — GPQA Diamond 91.7 (+5.4%), LiveCodeBench v6 91.9 (+3.3%), SWE-bench Multilingual 81.0 (+19.6%), IFBench 81.3 (−0.5%), with
n.a.on the twelve benchmarks NVIDIA does not report.3.
defaultinstead ofexperimental, and AgentX-onlyPer your call, the model is promoted to
defaultso it appears in the/overviewmatrix from day zero.defaulton its own would have given it asingle_turn_8k1krow, because an uncurated model falls back to the single data-derived scenario — and this model is benchmarked on agentic traces. So it also joins Kimi K3 and GLM 5.2 inOVERVIEW_MODEL_SCENARIOSas['agentx'], and in the fallback that picks a scenario for a model with no matching rows yet. It now contributes exactly one matrix row, on AgentX, rather than an empty fixed-sequence row.Notes for reviewers
api-route-catalogdigest foroverview-data.tsis refreshed. Per AGENTS.md I checked first: the change touches only the curated model-to-scenario map, no BFF parameter orOverviewPageDatafield moved, and the API reference enumerates neither.Verification
bun run test:unit— 4,419 app tests pass (246 files), all workspaces greenbun run build— zero errors;/model/qwen-3-8-flash-nextand its OG image both prerenderlint,fmt,typecheckclean, also via the pre-commit hook中文说明
本 PR 完成 #887 开始的 Qwen3.8-Flash-Next 接入,共三处改动。
1. 修复
/model/qwen-3-8-flash-next的 404getModelPageSlugs()只保留存在content/models/<slug>.mdx的 slug,而该模型此前没有内容文件,因此路由从未生成。本次新增该页面,沿用既有模型深度页的结构(概览 → 架构 → 厂商评测 → 基准说明 → 注意事项)。已验证页面成功预渲染为.next/server/app/model/qwen-3-8-flash-next.html,六个章节齐全。2. 以 Qwen4 架构一节为核心
这一强调是恰当的:Qwen 将该 checkpoint 定位为「面向可持续 AGI 进展的架构创新,而非单纯增加参数与上下文窗口的规模路线」。架构正是这个模型值得一读的原因,因此单独成节而非罗列要点:
所有数据均引用 model card。厂商评测表按 #876 的约定附带 Nemotron 3 Ultra 与 % better 两列:GPQA Diamond 91.7(+5.4%)、LiveCodeBench v6 91.9(+3.3%)、SWE-bench Multilingual 81.0(+19.6%)、IFBench 81.3(−0.5%),NVIDIA 未公布的十二项标为
n.a.。3. 改为
default,且仅 AgentX 场景按你的决定,模型提升为
default,自首发起即出现在/overview矩阵中。但仅改为 default 会让它落入single_turn_8k1k行,因为未经策展的模型会回退到唯一由数据推导的场景,而该模型是基于 agentic trace 测试的。因此它同时与 Kimi K3、GLM 5.2 一并在OVERVIEW_MODEL_SCENARIOS中登记为['agentx'],并同步调整了尚无匹配数据时选择场景的回退分支,最终只贡献一行 AgentX 矩阵行。评审提示
overview-data.ts的 api-route-catalog 摘要哈希已更新;按 AGENTS.md 先行核查:本次仅改动模型到场景的策展映射,未涉及任何 BFF 参数或OverviewPageData字段,API 参考也未枚举这些内容。验证
bun run test:unit— app 端 4,419 项测试通过(246 个文件),各 workspace 全部通过bun run build— 零报错;/model/qwen-3-8-flash-next及其 OG 图均成功预渲染lint、fmt、typecheck均通过(pre-commit hook 亦已执行)🤖 Generated with Claude Code
Note
Low Risk
Documentation and curated overview scenario mapping only; no API contract or benchmark pipeline changes beyond showing one additional default-matrix row.
Overview
Adds
content/models/qwen-3-8-flash-next.mdxso/model/qwen-3-8-flash-nextcan prerender (it was missing fromgetModelPageSlugs()’s MDX filter). The page follows the usual deep-dive shape: overview, Qwen4 architecture (n-gram table, QSA, gated residual, hybrid/MTP), vendor eval table with Nemotron 3 Ultra / % better columns, benchmark notes, and caveats (176B vs 125B headline, chip precision split, MTP acceptance length).Overview integration:
Qwen3.8-Flash-Nextmoves fromexperimentaltodefaultindata-mappings.tsso it appears in the default matrix. It is curated as AgentX-only inOVERVIEW_MODEL_SCENARIOSand the scenario fallback (with Kimi K3 and GLM 5.2), avoiding an emptysingle_turn_8k1krow. Unit tests and Cypress expect 9 matrix rows;api-route-catalogdigest foroverview-data.tsis refreshed.Reviewed by Cursor Bugbot for commit b25c8be. Bugbot is set up for automated code reviews on this repo. Configure here.