Skip to content

Redirect Kimi K2.5 to Kimi K2.6#491

Merged
AnthonyRonning merged 1 commit intomasterfrom
fix/kimi-k26-redirect
Apr 25, 2026
Merged

Redirect Kimi K2.5 to Kimi K2.6#491
AnthonyRonning merged 1 commit intomasterfrom
fix/kimi-k26-redirect

Conversation

@AnthonyRonning
Copy link
Copy Markdown
Contributor

@AnthonyRonning AnthonyRonning commented Apr 25, 2026

Summary

  • Redirect deprecated Kimi model IDs, including kimi-k2-5, to kimi-k2-6
  • Remove Kimi K2.5 from the frontend model selector config
  • Update Kimi K2.5 UI copy and public docs references to Kimi K2.6

Validation

  • just format
  • just lint
  • just build
  • pre-commit hook: prettier check, build, bun test

Open in Devin Review

Summary by CodeRabbit

Release Notes

  • Chores
    • Updated the available Kimi AI model from version 2.5 to 2.6 across the platform, including pricing information, feature descriptions, model selection, documentation, and promotional messaging. Version 2.5 is no longer available.

Co-authored-by: factory-droid[bot] <138933559+factory-droid[bot]@users.noreply.github.com>
@coderabbitai
Copy link
Copy Markdown

coderabbitai Bot commented Apr 25, 2026

📝 Walkthrough

Walkthrough

This PR upgrades the Kimi model version from K2.5 to K2.6 across documentation, component labels, pricing configurations, and model aliasing throughout the frontend. The K2.5 entry is removed from MODEL_CONFIG, and all aliases are updated to point to K2.6.

Changes

Cohort / File(s) Summary
Documentation
docs/support-faq.md, frontend/public/llms-full.txt, frontend/public/llms.txt
Updated model references from Kimi K2.5 to K2.6 in feature lists, model descriptions, and model availability documentation; also updated pricing table identifier from kimi-k2-5 to kimi-k2-6.
Component UI Updates
frontend/src/components/Marketing.tsx, frontend/src/components/PromoDialog.tsx, frontend/src/components/UpgradePromptDialog.tsx, frontend/src/routes/teams.tsx
Updated user-facing display text and benefit descriptions to reference Kimi K2.6 instead of K2.5 across promo dialogs, upgrade prompts, and model badge listings.
Model Configuration
frontend/src/components/ModelSelector.tsx
Removed the hardcoded Kimi K2.5 entry from MODEL_CONFIG, eliminating support for K2.5 model name resolution, vision capability checks, and token limit lookups.
Pricing Configuration
frontend/src/config/pricingConfig.tsx
Updated pricing plan feature descriptions across Free, Starter, Pro, Max, and Team plans to reference Kimi K2.6 instead of K2.5.
Model Aliasing
frontend/src/utils/utils.ts
Updated MODEL_NAME_ALIASES to normalize legacy aliases ("kimi-k2", "kimi-k2-thinking", "deepseek-r1-0528", and "kimi-k2-5") to resolve to "kimi-k2-6".

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~10 minutes

Possibly related PRs

Poem

🐰 K2.5 hops away, K2.6 takes its place,
Through docs and configs, at a quickened pace,
Aliases updated with careful care,
UI labels sparkle everywhere! ✨

🚥 Pre-merge checks | ✅ 4
✅ Passed checks (4 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title 'Redirect Kimi K2.5 to Kimi K2.6' accurately summarizes the primary change: model version migration from K2.5 to K2.6 across documentation, configuration, and UI components.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.

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

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch fix/kimi-k26-redirect

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

Copy link
Copy Markdown
Contributor

@devin-ai-integration devin-ai-integration Bot left a comment

Choose a reason for hiding this comment

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

✅ Devin Review: No Issues Found

Devin Review analyzed this PR and found no potential bugs to report.

View in Devin Review to see 2 additional findings.

Open in Devin Review

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: 1

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

Inline comments:
In `@frontend/src/utils/utils.ts`:
- Around line 82-85: The change in MODEL_NAME_ALIASES currently rewrites four
legacy aliases ("deepseek-r1-0528", "kimi-k2", "kimi-k2-thinking", and
"kimi-k2-5") to "kimi-k2-6"; decide and implement one of two fixes: either add a
clear migration note/comment (and a short changelog entry) next to
MODEL_NAME_ALIASES explaining the intentional retirement and
backward-compatibility implications and reference PAID_DEFAULT_MODEL_ID and
PRIMARY_MODELS.powerful as the only default controls, or restrict the alias
mapping so only "kimi-k2-5" -> "kimi-k2-6" is redirected while leaving
"deepseek-r1-0528", "kimi-k2", and "kimi-k2-thinking" untouched; update comments
to indicate why the chosen approach preserves MODEL_NAME_ALIASES stability.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: 915f1b55-86e4-4ea2-8abb-88798956e4c6

📥 Commits

Reviewing files that changed from the base of the PR and between 04f6f34 and a9d4b4d.

📒 Files selected for processing (10)
  • docs/support-faq.md
  • frontend/public/llms-full.txt
  • frontend/public/llms.txt
  • frontend/src/components/Marketing.tsx
  • frontend/src/components/ModelSelector.tsx
  • frontend/src/components/PromoDialog.tsx
  • frontend/src/components/UpgradePromptDialog.tsx
  • frontend/src/config/pricingConfig.tsx
  • frontend/src/routes/teams.tsx
  • frontend/src/utils/utils.ts
💤 Files with no reviewable changes (1)
  • frontend/src/components/ModelSelector.tsx

Comment thread frontend/src/utils/utils.ts
@AnthonyRonning AnthonyRonning merged commit c2604a5 into master Apr 25, 2026
15 checks passed
@AnthonyRonning AnthonyRonning deleted the fix/kimi-k26-redirect branch April 25, 2026 01:08
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.

1 participant