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
2 changes: 1 addition & 1 deletion src/lib/models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { recommendedModels } from '@/lib/providers/recommended-models';
import { kat_coder_pro_free_model } from '@/lib/providers/streamlake';
import { zai_glm47_free_model } from '@/lib/providers/zai';

export const DEFAULT_MODEL_CHOICES = ['anthropic/claude-sonnet-4.5', 'anthropic/claude-opus-4.5'];
export const DEFAULT_MODEL_CHOICES = ['anthropic/claude-sonnet-4.5', 'anthropic/claude-opus-4.6'];

export const PRIMARY_DEFAULT_MODEL = DEFAULT_MODEL_CHOICES[0];

Expand Down
2 changes: 1 addition & 1 deletion src/lib/providers/recommended-models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export const recommendedModels = [
random_vercel_routing: true,
},
{
public_id: 'anthropic/claude-opus-4.5',
public_id: 'anthropic/claude-opus-4.6',
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

WARNING: Opus version bump may create inconsistent defaults/routing

recommendedModels now recommends anthropic/claude-opus-4.6, but other parts of the codebase still hardcode anthropic/claude-opus-4.5 (e.g. kilo/auto mode routing + default model choices). If 4.6 is intended to replace 4.5, consider updating those references in the same PR to avoid divergent behavior between the recommended list and actual defaults/routing.

tool_choice_required: false,
random_vercel_routing: false, // not yet allowed pending strict tool use support
},
Expand Down