feat: add DeepSeek extreme reasoning tier

This commit is contained in:
wuyang
2026-07-26 17:40:51 +08:00
parent ade5ea1210
commit 2e8e81c790
25 changed files with 567 additions and 30 deletions
+5 -2
View File
@@ -10,16 +10,19 @@
const strengths = [
{ key: 'light', label: '轻度' },
{ key: 'medium', label: '中' },
{ key: 'high', label: '高' }
{ key: 'high', label: '高' },
{ key: 'extreme', label: '极高' }
];
const allowed = new Set([
'chat-light',
'chat-medium',
'chat-high',
'chat-extreme',
'work-light',
'work-medium',
'work-high'
'work-high',
'work-extreme'
]);
$: selected = allowed.has(selectedModels?.[0]) ? selectedModels[0] : 'chat-medium';