fix(models): remove claude opus/sonnet 4.5 and default to gpt-4.1 mini (#1431)
This commit is contained in:
parent
e7ef7d8f9c
commit
4dc5d60103
1 changed files with 1 additions and 13 deletions
|
|
@ -1,5 +1,5 @@
|
||||||
// Curated list of top models from Vercel AI Gateway
|
// 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 = {
|
export type ChatModel = {
|
||||||
id: string;
|
id: string;
|
||||||
|
|
@ -16,18 +16,6 @@ export const chatModels: ChatModel[] = [
|
||||||
provider: "anthropic",
|
provider: "anthropic",
|
||||||
description: "Fast and affordable, great for everyday tasks",
|
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
|
// OpenAI
|
||||||
{
|
{
|
||||||
id: "openai/gpt-4.1-mini",
|
id: "openai/gpt-4.1-mini",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue