Skip to content

Remove deepseek, add flash, llama and qwen.#44

Open
JudahZF wants to merge 2 commits intoT3-Content:mainfrom
JudahZF:new_models
Open

Remove deepseek, add flash, llama and qwen.#44
JudahZF wants to merge 2 commits intoT3-Content:mainfrom
JudahZF:new_models

Conversation

@JudahZF
Copy link
Copy Markdown

@JudahZF JudahZF commented Feb 24, 2026

Deepseek is slow, swap it for some new models.

Note

Update game.ts to remove DeepSeek 3.2 and add Gemini 3 Flash, Llama 4 Maverick, and Qwen 3.5 Plus to MODELS and MODEL_COLORS

Add three model entries and corresponding color mappings in game.ts and remove the DeepSeek 3.2 entry and mapping.

📍Where to Start

Start with the MODELS and MODEL_COLORS constants in game.ts.

Macroscope summarized ea95fdf.

Summary by CodeRabbit

  • New Features

    • Added three new AI models: Gemini 3 Flash, Llama 4 Maverick, and Qwen 3.5 Plus.
  • Updates

    • DeepSeek 3.2 has been retired and is no longer available.
    • UI model color themes updated to include distinct colors for the three new models.

Copilot AI review requested due to automatic review settings February 24, 2026 12:54
@coderabbitai
Copy link
Copy Markdown

coderabbitai bot commented Feb 24, 2026

📝 Walkthrough

Walkthrough

The PR updates game.ts: adds three models (Gemini 3 Flash, Llama 4 Maverick, Qwen 3.5 Plus), adds corresponding MODEL_COLORS entries, and comments out/removes the DeepSeek 3.2 model and its color mapping. (47 words)

Changes

Cohort / File(s) Summary
Model Registry & Colors
game.ts
Added three new models to MODELS (google/gemini-3-flash-preview, meta-llama/llama-4-maverick, qwen/qwen3.5-plus-02-15) and added their MODEL_COLORS mappings (Gemini 3 Flash, Llama 4 Maverick, Qwen 3.5 Plus). Commented out/disabled deepseek/deepseek-v3.2 and removed its color mapping for DeepSeek 3.2.

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~5 minutes

Poem

🐰 I nibble code and twitch my ear,
Three bright models hop into here.
Gemini, Llama, Qwen in play,
DeepSeek paused to rest today.
Hooray—more minds to join the fray! 🥕✨

🚥 Pre-merge checks | ✅ 3
✅ Passed checks (3 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title clearly and concisely summarizes the main change: removing DeepSeek model and adding three new models (Flash, Llama, Qwen), which matches the actual changeset.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
  • 📝 Generate docstrings (stacked PR)
  • 📝 Generate docstrings (commit on current branch)
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link
Copy Markdown

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 2

🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Inline comments:
In `@game.ts`:
- Line 15: The MODEL_COLORS map contains a stale commented-out entry for
"DeepSeek 3.2" that no longer corresponds to any active model in MODELS; remove
the dead entry from MODEL_COLORS (or restore the model in MODELS if it should be
used) so lookups are consistent—search for the commented line referencing
"deepseek/deepseek-v3.2" and either delete that entry from MODEL_COLORS or
re-add the matching model to the MODELS array/object to keep the sets in sync.
- Around line 10-12: The MODEL_COLORS map is missing entries for the new model
names added ({ 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" }); add string color values for
the keys "Gemini 3 Flash", "Llama 4 Maverick", and "Qwen 3.5 Plus" to the
MODEL_COLORS Record<string,string> (the same map referenced where MODEL_COLORS
is declared) so lookups return valid hex/ansi color strings used by the ink UI
renderer. Ensure the key names exactly match the name fields and choose distinct
colors consistent with existing palette.

ℹ️ Review info

Configuration used: defaults

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between ccaa86b and 7316760.

📒 Files selected for processing (1)
  • game.ts

Copy link
Copy Markdown

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull request overview

This PR replaces the DeepSeek model with three new AI models to improve performance. DeepSeek was removed because it was too slow, and the new models (Gemini Flash, Llama 4 Maverick, and Qwen 3.5 Plus) are added to provide more variety and better performance.

Changes:

  • Removed DeepSeek 3.2 model from active use (commented out)
  • Added Gemini 3 Flash, Llama 4 Maverick, and Qwen 3.5 Plus models

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment on lines +10 to +12
{ 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" },
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.
Add color entries for Gemini 3 Flash, Llama 4 Maverick, and Qwen 3.5 Plus,
and remove the stale DeepSeek 3.2 entry that no longer has an active model.

Co-Authored-By: Claude Sonnet 4.6 <[email protected]>
Copy link
Copy Markdown

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

♻️ Duplicate comments (1)
game.ts (1)

10-15: LGTM — all three model IDs confirmed valid on OpenRouter.

Gemini 3 Flash Preview is confirmed on OpenRouter, Llama 4 Maverick is a valid OpenRouter model, and Qwen3.5 Plus 2026-02-15 is also available.

Both issues from the previous review cycle have been addressed in this commit:

  • The MODEL_COLORS entries for all three new models are now present (lines 28–30).
  • The stale "DeepSeek 3.2" entry has been removed from MODEL_COLORS.
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@game.ts` around lines 10 - 15, No code changes required; the new model
entries ("google/gemini-3-flash-preview", "meta-llama/llama-4-maverick",
"qwen/qwen3.5-plus-02-15") are valid and the related MODEL_COLORS entries have
been added while the stale "deepseek/deepseek-v3.2" entry was removed—proceed to
approve/merge the changes as-is (no edits to functions or classes needed).
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Duplicate comments:
In `@game.ts`:
- Around line 10-15: No code changes required; the new model entries
("google/gemini-3-flash-preview", "meta-llama/llama-4-maverick",
"qwen/qwen3.5-plus-02-15") are valid and the related MODEL_COLORS entries have
been added while the stale "deepseek/deepseek-v3.2" entry was removed—proceed to
approve/merge the changes as-is (no edits to functions or classes needed).

ℹ️ Review info

Configuration used: defaults

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 7316760 and ea95fdf.

📒 Files selected for processing (1)
  • game.ts

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants