@blockrun/franklin 3.9.2 → 3.9.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ui/model-picker.js +7 -8
- package/package.json +1 -1
package/dist/ui/model-picker.js
CHANGED
|
@@ -118,26 +118,26 @@ export const PICKER_CATEGORIES = [
|
|
|
118
118
|
],
|
|
119
119
|
},
|
|
120
120
|
{
|
|
121
|
+
// Picker trim (v3.9.3): hide superseded / awkward-middle / niche-premium
|
|
122
|
+
// entries to bring choice paralysis down. Their shortcuts (`opus-4.6`,
|
|
123
|
+
// `gpt-5.4`, `gpt-5.4-pro`, `grok`, `o1`, `o4`, `nano`) all stay live in
|
|
124
|
+
// MODEL_SHORTCUTS, so muscle memory keeps working — they just aren't
|
|
125
|
+
// listed in the visible picker. Same pattern v3.9.0 used to retire dead
|
|
126
|
+
// free-tier entries and v3.9.2 used to retire Kimi K2.5.
|
|
121
127
|
category: '✨ Premium frontier',
|
|
122
128
|
models: [
|
|
123
129
|
{ id: 'anthropic/claude-opus-4.7', shortcut: 'opus', label: 'Claude Opus 4.7', price: '$5/$25', highlight: true },
|
|
124
130
|
{ id: 'anthropic/claude-sonnet-4.6', shortcut: 'sonnet', label: 'Claude Sonnet 4.6', price: '$3/$15' },
|
|
125
|
-
{ id: 'anthropic/claude-opus-4.6', shortcut: 'opus-4.6', label: 'Claude Opus 4.6', price: '$5/$25' },
|
|
126
131
|
{ id: 'openai/gpt-5.5', shortcut: 'gpt', label: 'GPT-5.5', price: '$5/$30', highlight: true },
|
|
127
|
-
{ id: 'openai/gpt-5.4', shortcut: 'gpt-5.4', label: 'GPT-5.4', price: '$2.5/$15' },
|
|
128
|
-
{ id: 'openai/gpt-5.4-pro', shortcut: 'gpt-5.4-pro', label: 'GPT-5.4 Pro', price: '$30/$180' },
|
|
129
|
-
{ id: 'google/gemini-2.5-pro', shortcut: 'gemini', label: 'Gemini 2.5 Pro', price: '$1.25/$10' },
|
|
130
132
|
{ id: 'google/gemini-3.1-pro', shortcut: 'gemini-3', label: 'Gemini 3.1 Pro', price: '$2/$12' },
|
|
133
|
+
{ id: 'google/gemini-2.5-pro', shortcut: 'gemini', label: 'Gemini 2.5 Pro', price: '$1.25/$10' },
|
|
131
134
|
{ id: 'xai/grok-4-0709', shortcut: 'grok-4', label: 'Grok 4', price: '$0.2/$1.5' },
|
|
132
|
-
{ id: 'xai/grok-3', shortcut: 'grok', label: 'Grok 3', price: '$3/$15' },
|
|
133
135
|
],
|
|
134
136
|
},
|
|
135
137
|
{
|
|
136
138
|
category: '🔬 Reasoning',
|
|
137
139
|
models: [
|
|
138
140
|
{ id: 'openai/o3', shortcut: 'o3', label: 'O3', price: '$2/$8' },
|
|
139
|
-
{ id: 'openai/o4-mini', shortcut: 'o4', label: 'O4 Mini', price: '$1.1/$4.4' },
|
|
140
|
-
{ id: 'openai/o1', shortcut: 'o1', label: 'O1', price: '$15/$60' },
|
|
141
141
|
{ id: 'openai/gpt-5.3-codex', shortcut: 'codex', label: 'GPT-5.3 Codex', price: '$1.75/$14' },
|
|
142
142
|
{ id: 'deepseek/deepseek-reasoner', shortcut: 'r1', label: 'DeepSeek R1', price: '$0.28/$0.42' },
|
|
143
143
|
{ id: 'xai/grok-4-1-fast-reasoning', shortcut: 'grok-fast', label: 'Grok 4.1 Fast R.', price: '$0.2/$0.5' },
|
|
@@ -148,7 +148,6 @@ export const PICKER_CATEGORIES = [
|
|
|
148
148
|
models: [
|
|
149
149
|
{ id: 'anthropic/claude-haiku-4.5-20251001', shortcut: 'haiku', label: 'Claude Haiku 4.5', price: '$1/$5' },
|
|
150
150
|
{ id: 'openai/gpt-5-mini', shortcut: 'mini', label: 'GPT-5 Mini', price: '$0.25/$2' },
|
|
151
|
-
{ id: 'openai/gpt-5-nano', shortcut: 'nano', label: 'GPT-5 Nano', price: '$0.05/$0.4' },
|
|
152
151
|
{ id: 'google/gemini-2.5-flash', shortcut: 'flash', label: 'Gemini 2.5 Flash', price: '$0.3/$2.5' },
|
|
153
152
|
{ id: 'deepseek/deepseek-chat', shortcut: 'deepseek', label: 'DeepSeek V3', price: '$0.28/$0.42' },
|
|
154
153
|
{ id: 'moonshot/kimi-k2.6', shortcut: 'kimi', label: 'Kimi K2.6', price: '$0.95/$4' },
|
package/package.json
CHANGED