Skip to content
Closed
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/app/api/openrouter/[...path]/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ import { KILO_AUTO_MODEL_ID } from '@/lib/kilo-auto-model';

const MAX_TOKENS_LIMIT = 99999999999; // GPT4.1 default is ~32k

const OPUS = 'anthropic/claude-opus-4.5';
const OPUS = 'anthropic/claude-opus-4.6';
const SONNET = 'anthropic/claude-sonnet-4.5';

// Mode → model mappings for kilo/auto routing.
Expand Down
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
8 changes: 4 additions & 4 deletions src/lib/providers/anthropic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ import { normalizeToolCallIds } from '@/lib/tool-calling';
import type OpenAI from 'openai';

export const opus_45_free_slackbot_model = {
public_id: 'anthropic/claude-opus-4.5:slackbot',
display_name: 'Claude Opus 4.5 (Free for Kilo for Slack)',
description: 'Free version of Claude Opus 4.5 for use in Kilo for Slack only',
public_id: 'anthropic/claude-opus-4.6:slackbot',
display_name: 'Claude Opus 4.6 (Free for Kilo for Slack)',
description: 'Free version of Claude Opus 4.6 for use in Kilo for Slack only',
context_length: 200000,
max_completion_tokens: 32000,
is_enabled: true,
flags: ['reasoning', 'vision'],
gateway: 'vercel',
internal_id: 'anthropic/claude-opus-4.5',
internal_id: 'anthropic/claude-opus-4.6',
inference_providers: ['anthropic'],
slackbot_only: true,
} as KiloFreeModel;
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',
tool_choice_required: false,
random_vercel_routing: false, // not yet allowed pending strict tool use support
},
Expand Down
2 changes: 1 addition & 1 deletion src/lib/security-agent/core/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import type { SecurityAgentConfig } from './types';
*/
export const SECURITY_AGENT_MODELS = [
{ id: 'anthropic/claude-sonnet-4.5', name: 'Claude Sonnet 4.5', free: false },
{ id: 'anthropic/claude-opus-4.5', name: 'Claude Opus 4.5', free: false },
{ id: 'anthropic/claude-opus-4.6', name: 'Claude Opus 4.6', free: false },
{ id: 'x-ai/grok-code-fast-1', name: 'Grok Code Fast 1 (free)', free: true },
] as const;

Expand Down
2 changes: 1 addition & 1 deletion storybook/stories/shared/ModelCombobox.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {
const sortingDemoModels: ModelOption[] = [
// Some preferred models (will appear in "Recommended" section)
{ id: 'x-ai/grok-code-fast-1', name: 'Grok Code Fast 1' },
{ id: 'anthropic/claude-opus-4.5', name: 'Claude Opus 4.5' },
{ id: 'anthropic/claude-opus-4.6', name: 'Claude Opus 4.6' },
{ id: 'anthropic/claude-sonnet-4.5', name: 'Claude Sonnet 4.5' },
{ id: 'openai/gpt-5.1', name: 'GPT-5.1' },

Expand Down