Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions frontend/src/components/ModelSelector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export function getModelTokenLimit(modelId: string): number {
// Primary model options
const PRIMARY_MODELS = {
quick: "gpt-oss-120b",
powerful: "kimi-k2-5"
powerful: "kimi-k2-6"
Comment thread
coderabbitai[bot] marked this conversation as resolved.
};

const PRIMARY_INFO = {
Expand Down Expand Up @@ -213,7 +213,7 @@ export function ModelSelector({ hasImages = false }: { hasImages?: boolean }) {
const isStarter = planName.includes("starter");

if (isProMaxOrTeam) {
// Pro/Max/Team: switch to Powerful (kimi-k2-5 has vision)
// Pro/Max/Team: switch to Powerful (Kimi K2.6 has vision)
setModel(PRIMARY_MODELS.powerful);
} else if (isStarter) {
// Starter: switch to Gemma 4
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/state/LocalStateContext.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export {
} from "./LocalStateContextDef";

export const DEFAULT_MODEL_ID = "gpt-oss-120b";
export const PAID_DEFAULT_MODEL_ID = "kimi-k2-5";
export const PAID_DEFAULT_MODEL_ID = "kimi-k2-6";

// Check if a plan name corresponds to a pro/max/team plan
function isProMaxOrTeamPlan(planName: string): boolean {
Expand Down
Loading