feat(compare): add MiniMax M3 to compare model registry#451
Open
functionstackx wants to merge 1 commit into
Open
feat(compare): add MiniMax M3 to compare model registry#451functionstackx wants to merge 1 commit into
functionstackx wants to merge 1 commit into
Conversation
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
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.
MiniMax M3 was added to the dashboard model dropdown (#444, ordering in #450) but never to
COMPARE_MODEL_SLUGSinpackages/app/src/lib/compare-slug.ts— the hand-maintained registry that drives /compare, /compare-per-dollar, the sitemap, and their OG images. So M3 was absent from all compare surfaces. (/about needed no change — it derives fromDB_MODEL_TO_DISPLAYand already lists MiniMax-M3.)Changes
compare-slug.ts: addminimax-m3entry (displayName: 'MiniMax-M3',dbKeys: ['minimaxm3'], labelMiniMax M3 428B), placed beforeminimax-m27so the newer flagship leads within the family, mirroring DeepSeek V4 Pro before R1. The bareminimaxalias stays onminimax-m27for backward compat (same pattern asdeepseek→deepseek-r1). M3 is a distinct 428B architecture, not an M2 point release, so it gets its own slug rather than joining the M2 dbKey group.compare-ssr.ts: add'MiniMax-M3'toKNOWN_MODELSso?g_model=URL overrides validate.compare-slug.test.ts: new tests for parsingminimax-m3-h100-vs-h200and slug/alias resolution; the existing round-trip suites cover the new entry automatically (34 tests pass).docs/adding-entities.md: add the compare-slug registry andKNOWN_MODELSsteps to the Adding a New Model checklist — they weren't listed, which is why M3 fell through.Notes
minimaxm3benchmark rows (verified against the live availability API), so the /compare index won't render an M3 section until a second GPU has data —getComparablePairsByModelSlugrequires both sides of a pair. The section, sitemap URLs, and OG images appear automatically once that happens; direct/compare/minimax-m3-*URLs render the standard empty state until then.🤖 Generated with Claude Code
Note
Low Risk
Registry and documentation-only changes for compare routing and URL validation; no auth, ingest, or benchmark logic.
Overview
MiniMax M3 is registered for SSR compare flows that do not use
MODEL_CONFIG:/compare,/compare-per-dollar, sitemap URLs, and OG images.COMPARE_MODEL_SLUGSgains aminimax-m3entry (dbKeys: ['minimaxm3'], label MiniMax M3 428B), ordered beforeminimax-m27so the newer flagship leads the family. The bareminimaxalias still resolves to the M2 series slug;minimax-m3is canonical for M3.KNOWN_MODELSincompare-ssr.tsnow includesMiniMax-M3so?g_model=overrides validate. Tests cover slug parsing and alias resolution.docs/adding-entities.mddocuments the compare-slug registry andKNOWN_MODELSsteps so new models are not dashboard-only.Reviewed by Cursor Bugbot for commit 0c6149f. Bugbot is set up for automated code reviews on this repo. Configure here.