Skip to content

Commit 6e6645e

Browse files
fix(about): list each model version as its own bullet on /about
DB_MODEL_TO_DISPLAY collapses point releases (e.g. kimik2.5/kimik2.6 → "Kimi-K2.5") for the dashboard, which made the /about "Which AI models are tested?" list show duplicate names and hide K2.6, M2.7, GLM-5.1. Apply an /about-only override that expands those entries back out. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent f977f19 commit 6e6645e

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

packages/app/src/components/about/faq-data.ts

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,15 @@ const gpusByVendor = [...GPU_KEYS].reduce<Record<string, string[]>>((acc, key) =
3131
(acc[vendor] ??= []).push(key.toUpperCase());
3232
return acc;
3333
}, {});
34-
const modelNames = Object.values(DB_MODEL_TO_DISPLAY);
34+
// /about lists each DB bucket as its own bullet, so point releases that
35+
// elsewhere collapse under one display name (see DB_MODEL_TO_DISPLAY) are
36+
// expanded back out here.
37+
const modelNames = Object.values({
38+
...DB_MODEL_TO_DISPLAY,
39+
'kimik2.6': 'Kimi-K2.6',
40+
'minimaxm2.7': 'MiniMax-M2.7',
41+
'glm5.1': 'GLM-5.1',
42+
});
3543

3644
const frameworkNames = [...new Set(Object.values(FRAMEWORK_LABELS))].map((n) =>
3745
n.replace(/[¹²³]+$/u, ''),

0 commit comments

Comments
 (0)