Skip to content
Open
Changes from 1 commit
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
5 changes: 4 additions & 1 deletion 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 Down
Loading