Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 1 addition & 13 deletions lib/ai/models.ts
Original file line number Diff line number Diff line change
@@ -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;
Expand All @@ -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",
Expand Down