From 82ac8760d884f0c3585d0ead588083ed990b713f Mon Sep 17 00:00:00 2001 From: Josh Lambert Date: Thu, 5 Feb 2026 15:02:10 -0500 Subject: [PATCH 1/2] Update security model to use Opus 4.6 --- src/lib/security-agent/core/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/security-agent/core/constants.ts b/src/lib/security-agent/core/constants.ts index 954ef75d76..8bb0e40d06 100644 --- a/src/lib/security-agent/core/constants.ts +++ b/src/lib/security-agent/core/constants.ts @@ -11,8 +11,8 @@ import type { SecurityAgentConfig } from './types'; * Order matters - first one is the default */ export const SECURITY_AGENT_MODELS = [ + { id: 'anthropic/claude-opus-4.6', name: 'Claude Opus 4.6', free: false }, { 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: 'x-ai/grok-code-fast-1', name: 'Grok Code Fast 1 (free)', free: true }, ] as const; From 8aed6b785588367a30f7208a0d0dc1d0887aa656 Mon Sep 17 00:00:00 2001 From: Josh Lambert Date: Thu, 5 Feb 2026 15:31:15 -0500 Subject: [PATCH 2/2] Re-add back opus 4.5 --- src/lib/security-agent/core/constants.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/security-agent/core/constants.ts b/src/lib/security-agent/core/constants.ts index 8bb0e40d06..606cc052dd 100644 --- a/src/lib/security-agent/core/constants.ts +++ b/src/lib/security-agent/core/constants.ts @@ -12,6 +12,7 @@ import type { SecurityAgentConfig } from './types'; */ export const SECURITY_AGENT_MODELS = [ { 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;