From 4dc5d60103c8f214306561a29966adf4e32bbaf8 Mon Sep 17 00:00:00 2001 From: dancer <144584931+dancer@users.noreply.github.com> Date: Mon, 2 Mar 2026 13:31:39 +0000 Subject: [PATCH] fix(models): remove claude opus/sonnet 4.5 and default to gpt-4.1 mini (#1431) --- lib/ai/models.ts | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/lib/ai/models.ts b/lib/ai/models.ts index 7837cf6..2241611 100644 --- a/lib/ai/models.ts +++ b/lib/ai/models.ts @@ -1,5 +1,5 @@ // Curated list of top models from Vercel AI Gateway -export const DEFAULT_CHAT_MODEL = "google/gemini-2.5-flash-lite"; +export const DEFAULT_CHAT_MODEL = "openai/gpt-4.1-mini"; export type ChatModel = { id: string; @@ -16,18 +16,6 @@ export const chatModels: ChatModel[] = [ provider: "anthropic", description: "Fast and affordable, great for everyday tasks", }, - { - id: "anthropic/claude-sonnet-4.5", - name: "Claude Sonnet 4.5", - provider: "anthropic", - description: "Best balance of speed, intelligence, and cost", - }, - { - id: "anthropic/claude-opus-4.5", - name: "Claude Opus 4.5", - provider: "anthropic", - description: "Most capable Anthropic model", - }, // OpenAI { id: "openai/gpt-4.1-mini",