From 6b4ed5fcb3f9856be687d1010528d1d192b7879c Mon Sep 17 00:00:00 2001 From: Theo Browne Date: Fri, 20 Feb 2026 02:52:39 -0800 Subject: [PATCH] minimax --- frontend.tsx | 2 ++ game.ts | 2 ++ history.tsx | 2 ++ public/assets/logos/minimax.svg | 1 + 4 files changed, 7 insertions(+) create mode 100644 public/assets/logos/minimax.svg diff --git a/frontend.tsx b/frontend.tsx index a02a3d1..2de7e57 100644 --- a/frontend.tsx +++ b/frontend.tsx @@ -33,6 +33,7 @@ const MODEL_COLORS: Record = { "Opus 4.6": "#D97757", "Sonnet 4.6": "#D97757", "Grok 4.1": "#FFFFFF", + "MiniMax 2.5": "#FF3B30", }; function getColor(name: string): string { @@ -47,6 +48,7 @@ function getLogo(name: string): string | null { if (name.includes("GPT")) return "/assets/logos/openai.svg"; if (name.includes("Opus") || name.includes("Sonnet")) return "/assets/logos/claude.svg"; if (name.includes("Grok")) return "/assets/logos/grok.svg"; + if (name.includes("MiniMax")) return "/assets/logos/minimax.svg"; return null; } diff --git a/game.ts b/game.ts index 2353f50..80f5222 100644 --- a/game.ts +++ b/game.ts @@ -15,6 +15,7 @@ export const MODELS = [ { id: "anthropic/claude-opus-4.6", name: "Opus 4.6" }, { id: "anthropic/claude-sonnet-4.6", name: "Sonnet 4.6" }, { id: "x-ai/grok-4.1-fast", name: "Grok 4.1" }, + { id: "minimax/minimax-m2.5", name: "MiniMax 2.5" }, ] as const; export type Model = (typeof MODELS)[number]; @@ -29,6 +30,7 @@ export const MODEL_COLORS: Record = { "Opus 4.6": "blue", "Sonnet 4.6": "red", "Grok 4.1": "white", + "MiniMax 2.5": "magentaBright", }; export const NAME_PAD = 16; diff --git a/history.tsx b/history.tsx index 71ca0a1..b431569 100644 --- a/history.tsx +++ b/history.tsx @@ -31,6 +31,7 @@ const MODEL_COLORS: Record = { "Opus 4.6": "#D97757", "Sonnet 4.6": "#D97757", "Grok 4.1": "#FFFFFF", + "MiniMax 2.5": "#FF3B30", }; function getColor(name: string): string { @@ -45,6 +46,7 @@ function getLogo(name: string): string | null { if (name.includes("GPT")) return "/assets/logos/openai.svg"; if (name.includes("Opus") || name.includes("Sonnet")) return "/assets/logos/claude.svg"; if (name.includes("Grok")) return "/assets/logos/grok.svg"; + if (name.includes("MiniMax")) return "/assets/logos/minimax.svg"; return null; } diff --git a/public/assets/logos/minimax.svg b/public/assets/logos/minimax.svg new file mode 100644 index 0000000..2a60bd4 --- /dev/null +++ b/public/assets/logos/minimax.svg @@ -0,0 +1 @@ +Minimax \ No newline at end of file