fix(models): remove claude opus/sonnet 4.5 and default to gpt-4.1 mini (#1431)

This commit is contained in:
dancer 2026-03-02 13:31:39 +00:00 committed by GitHub
parent e7ef7d8f9c
commit 4dc5d60103
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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",