@wendongfly/myhi 1.3.37 → 1.3.39
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/chat.html +7 -5
- package/dist/index.js +1 -1
- package/dist/index.min.js +1 -1
- package/package.json +1 -1
package/dist/chat.html
CHANGED
|
@@ -1908,11 +1908,13 @@
|
|
|
1908
1908
|
|
|
1909
1909
|
// ── 模型选择 ──────────────────────────────────
|
|
1910
1910
|
const MODELS = [
|
|
1911
|
-
|
|
1912
|
-
{ id: 'claude-
|
|
1913
|
-
{ id: 'claude-
|
|
1914
|
-
{ id: 'claude-
|
|
1915
|
-
|
|
1911
|
+
// 当前主力(Anthropic 最新一代,2026-04 时点)
|
|
1912
|
+
{ id: 'claude-sonnet-4-6', label: 'Sonnet 4.6', desc: '默认推荐 · 速度+智能平衡 · 1M ctx' },
|
|
1913
|
+
{ id: 'claude-opus-4-7', label: 'Opus 4.7', desc: '最强推理 · agentic coding · 1M ctx' },
|
|
1914
|
+
{ id: 'claude-haiku-4-5', label: 'Haiku 4.5', desc: '最快最便宜 · 200k ctx' },
|
|
1915
|
+
// 备选(上一代,仍可用)
|
|
1916
|
+
{ id: 'claude-opus-4-6', label: 'Opus 4.6', desc: '上一代 Opus(备选)' },
|
|
1917
|
+
{ id: 'claude-sonnet-4-5', label: 'Sonnet 4.5', desc: '上一代 Sonnet(备选)' },
|
|
1916
1918
|
];
|
|
1917
1919
|
let currentModelId = '';
|
|
1918
1920
|
|