Skip to content
Closed
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions src/pricing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,8 @@ export const MODEL_PRICING: Record<string, { input: number; output: number; perC
'minimax/minimax-m3': { input: 0.3, output: 1.2 },
'minimax/minimax-m2.7': { input: 0.3, output: 1.2 },
'minimax/minimax-m2.5': { input: 0.3, output: 1.2 },
// Qwen3.7 Max — BlockRun applies its standard 5% margin at settlement.
'qwen/qwen3.7-max': { input: 1.475, output: 4.425 },
// Moonshot — K2.7 is the gateway flagship (2026-06); K2.6 demoted but still
// routes, kept for the `k2.6` pin + legacy session-cost records.
'moonshot/kimi-k2.7': { input: 0.95, output: 4.0 },
Expand Down
5 changes: 5 additions & 0 deletions src/ui/model-picker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,10 @@ export const MODEL_SHORTCUTS: Record<string, string> = {
// Others
minimax: 'minimax/minimax-m3',
'm3': 'minimax/minimax-m3',
// Qwen
qwen: 'qwen/qwen3.7-max',
'qwen3.7-max': 'qwen/qwen3.7-max',
'qwen-3.7-max': 'qwen/qwen3.7-max',
'm2.7': 'minimax/minimax-m2.7',
glm: 'zai/glm-5.2',
'glm-5': 'zai/glm-5',
Expand Down Expand Up @@ -176,6 +180,7 @@ export const PICKER_CATEGORIES: ModelCategory[] = [
models: [
{ id: 'anthropic/claude-opus-4.8', shortcut: 'opus', label: 'Claude Opus 4.8', price: '$5/$25', highlight: true },
{ id: 'anthropic/claude-sonnet-4.6', shortcut: 'sonnet', label: 'Claude Sonnet 4.6', price: '$3/$15' },
{ id: 'qwen/qwen3.7-max', shortcut: 'qwen', label: 'Qwen3.7 Max', price: '$1.475/$4.425', highlight: true },
{ id: 'openai/gpt-5.5', shortcut: 'gpt', label: 'GPT-5.5', price: '$5/$30', highlight: true },
{ id: 'google/gemini-3.1-pro', shortcut: 'gemini-3', label: 'Gemini 3.1 Pro', price: '$2/$12' },
{ id: 'google/gemini-2.5-pro', shortcut: 'gemini', label: 'Gemini 2.5 Pro', price: '$1.25/$10' },
Expand Down