-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodels.json
More file actions
76 lines (76 loc) · 2.32 KB
/
Copy pathmodels.json
File metadata and controls
76 lines (76 loc) · 2.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"_description": "Single source of truth for LLM model dropdowns. Used by summarizer.ts (CLI) and SettingsView.swift (macOS app). Run `bun run sync:models` after editing to update Swift.",
"_updated": "2026-04-17",
"_note": "Order models cheapest-first within each provider. First model in each list is the default for batch tagging. Check provider docs quarterly for new models and deprecations.",
"providers": {
"anthropic": {
"label": "Anthropic",
"keyPlaceholder": "sk-ant-...",
"models": [
"claude-haiku-4-5-20251001",
"claude-sonnet-4-5-20250929",
"claude-sonnet-4-6",
"claude-opus-4-5-20251101",
"claude-opus-4-6",
"claude-opus-4-7"
],
"default": "claude-haiku-4-5-20251001",
"docsUrl": "https://docs.anthropic.com/en/docs/about-claude/models"
},
"openai": {
"label": "OpenAI",
"keyPlaceholder": "sk-...",
"models": [
"gpt-4.1-nano",
"gpt-4.1-mini",
"gpt-4.1",
"gpt-5-nano",
"gpt-5-mini",
"gpt-5",
"gpt-5.1",
"gpt-5.2"
],
"default": "gpt-4.1-mini",
"docsUrl": "https://platform.openai.com/docs/models"
},
"gemini": {
"label": "Gemini",
"keyPlaceholder": "AIza...",
"models": [
"gemini-2.5-flash-lite",
"gemini-2.5-flash",
"gemini-2.5-pro",
"gemini-3-flash-preview"
],
"default": "gemini-2.5-flash-lite",
"docsUrl": "https://ai.google.dev/gemini-api/docs/models",
"deprecations": {
"gemini-2.0-flash": "2026-03-31",
"gemini-2.0-flash-lite": "2026-03-31"
}
},
"openrouter": {
"label": "OpenRouter",
"keyPlaceholder": "sk-or-...",
"models": [
"anthropic/claude-haiku-4.5",
"google/gemini-2.5-flash",
"deepseek/deepseek-v3.2",
"openai/gpt-5-mini",
"anthropic/claude-sonnet-4.5",
"meta-llama/llama-3.3-70b-instruct:free"
],
"default": "anthropic/claude-haiku-4.5",
"docsUrl": "https://openrouter.ai/models"
},
"apple": {
"label": "Apple Intelligence",
"keyPlaceholder": "No key needed",
"models": [
"on-device"
],
"default": "on-device",
"docsUrl": "https://developer.apple.com/documentation/foundationmodels"
}
}
}