Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/app/cypress/e2e/overview.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const MODEL_LABELS = [
'DeepSeek V4 Pro 1.6T',
'Kimi K3 2.8T',
'MiniMax M3 428B',
'GLM5.2',
'GLM5.2/GLM5.3',
'Qwen3.5 397B',
];

Expand Down
2 changes: 1 addition & 1 deletion packages/app/src/lib/data-mappings.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ describe('getModelLabel', () => {
expect(getModelLabel(Model.Qwen3_5)).toBe('Qwen3.5 397B');
expect(getModelLabel(Model.Kimi_K2_5)).toBe('Kimi K2.5/2.6/2.7-Code 1T');
expect(getModelLabel(Model.GLM_5)).toBe('GLM5/5.1 744B');
expect(getModelLabel(Model.GLM_5_2)).toBe('GLM5.2');
expect(getModelLabel(Model.GLM_5_2)).toBe('GLM5.2/GLM5.3');
expect(getModelLabel(Model.MiniMax_M2_5)).toBe('MiniMax M2.5/2.7 230B');
});

Expand Down
4 changes: 3 additions & 1 deletion packages/app/src/lib/data-mappings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,9 @@ const MODEL_CONFIG: Record<Model, ModelConfig> = {
category: 'maintenance',
},
[Model.GLM_5]: { label: 'GLM5/5.1 744B', prefix: 'glm5', category: 'deprecated' },
[Model.GLM_5_2]: { label: 'GLM5.2', prefix: 'glm5.2', category: 'default' },
// GLM-5.2 and GLM-5.3 share the same architecture and inference profile, so
// the selector presents both releases over the existing GLM-5.2 data bucket.
[Model.GLM_5_2]: { label: 'GLM5.2/GLM5.3', prefix: 'glm5.2', category: 'default' },

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Incomplete GLM dual-version labeling

Low Severity

The PR renames the selector label to GLM5.2/GLM5.3, but /compare and /compare-per-dollar still read label from compare-slug.ts, which remains GLM 5.2. That registry does not derive from MODEL_CONFIG, so compare headers, OG images, and page copy keep the old single-version name while overview and chart selectors show both releases.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit aa0c60c. Configure here.

[Model.Qwen3_5]: { label: 'Qwen3.5 397B', prefix: 'qwen3.5', category: 'default' },
[Model.GptOss]: { label: 'gpt-oss 120B', prefix: 'gptoss', category: 'deprecated' },
[Model.MiniMax_M2_5]: {
Expand Down