diff --git a/src/lib/security-agent/core/constants.ts b/src/lib/security-agent/core/constants.ts index 954ef75d76..606cc052dd 100644 --- a/src/lib/security-agent/core/constants.ts +++ b/src/lib/security-agent/core/constants.ts @@ -11,8 +11,9 @@ import type { SecurityAgentConfig } from './types'; * Order matters - first one is the default */ export const SECURITY_AGENT_MODELS = [ - { id: 'anthropic/claude-sonnet-4.5', name: 'Claude Sonnet 4.5', free: false }, + { id: 'anthropic/claude-opus-4.6', name: 'Claude Opus 4.6', free: false }, { id: 'anthropic/claude-opus-4.5', name: 'Claude Opus 4.5', free: false }, + { id: 'anthropic/claude-sonnet-4.5', name: 'Claude Sonnet 4.5', free: false }, { id: 'x-ai/grok-code-fast-1', name: 'Grok Code Fast 1 (free)', free: true }, ] as const;