Skip to content
Open
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
9 changes: 7 additions & 2 deletions game.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,12 @@ import { join } from "node:path";

export const MODELS = [
{ id: "google/gemini-3.1-pro-preview", name: "Gemini 3.1 Pro" },
{ id: "google/gemini-3-flash-preview", name: "Gemini 3 Flash" },
{ id: "meta-llama/llama-4-maverick", name: "Llama 4 Maverick" },
{ id: "qwen/qwen3.5-plus-02-15", name: "Qwen 3.5 Plus" },
Comment on lines +10 to +12
Copy link

Copilot AI Feb 24, 2026

Choose a reason for hiding this comment

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

The newly added models "Gemini 3 Flash", "Llama 4 Maverick", and "Qwen 3.5 Plus" are missing from the MODEL_COLORS object (lines 26-37). Each active model in the MODELS array should have a corresponding color entry in MODEL_COLORS to ensure consistent styling. Add color entries for these three models.

Copilot uses AI. Check for mistakes.
{ id: "moonshotai/kimi-k2", name: "Kimi K2" },
// { id: "moonshotai/kimi-k2.5", name: "Kimi K2.5" },
{ id: "deepseek/deepseek-v3.2", name: "DeepSeek 3.2" },
// { id: "deepseek/deepseek-v3.2", name: "DeepSeek 3.2" },
// { id: "z-ai/glm-5", name: "GLM-5" },
{ id: "openai/gpt-5.2", name: "GPT-5.2" },
{ id: "anthropic/claude-opus-4.6", name: "Opus 4.6" },
Expand All @@ -22,9 +25,11 @@ export type Model = (typeof MODELS)[number];

export const MODEL_COLORS: Record<string, string> = {
"Gemini 3.1 Pro": "cyan",
"Gemini 3 Flash": "blueBright",
"Llama 4 Maverick": "yellowBright",
"Qwen 3.5 Plus": "redBright",
"Kimi K2": "green",
"Kimi K2.5": "magenta",
"DeepSeek 3.2": "greenBright",
"GLM-5": "cyanBright",
"GPT-5.2": "yellow",
"Opus 4.6": "blue",
Expand Down