@lay111/dsh-plugin-google 1.0.10 → 1.0.11
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/README.md +1 -0
- package/package.json +1 -1
- package/src/models.js +12 -1
package/README.md
CHANGED
|
@@ -43,6 +43,7 @@
|
|
|
43
43
|
| **`gemini-3.7-flash`** | **Gemini 3.7 Flash High** *(默认旗舰)* | **10,000 Budget 满血思考** | **日常主力推荐**。超强代码逻辑、系统级跨文件重构与复杂 Bug 诊断 |
|
|
44
44
|
| **`gemini-3.7-flash-medium`** | Gemini 3.7 Flash Medium | 5,000 思考 | 均衡模式,兼顾思考深度与低延迟,配额更充裕 |
|
|
45
45
|
| **`gemini-3.7-flash-low`** | Gemini 3.7 Flash Low (Fast) | 1,000 思考 | 极速响应,适合单文件快速修改与小改动 |
|
|
46
|
+
| **`claude-opus-4.6`** | Claude Opus 4.6 (Thinking) | 顶级思考 | Anthropic 旗舰级超强架构设计与高阶算法推演 |
|
|
46
47
|
| **`claude-sonnet-4.6`** | Claude Sonnet 4.6 (Thinking) | 深度思考 | 逻辑严密、遵循规范性极强的 Anthropic 顶尖编程模型 |
|
|
47
48
|
| **`gemini-3.1-pro`** | Gemini 3.1 Pro (High Reasoning) | 8,000 思考 | Pro 级旗舰深度推演大模型(100万超大上下文) |
|
|
48
49
|
| **`gemini-3.6-flash`** | Gemini 3.6 Flash High | 4,000 思考 | 经典速度极快的高性价比轻量模型 |
|
package/package.json
CHANGED
package/src/models.js
CHANGED
|
@@ -29,13 +29,24 @@ export const ANTIGRAVITY_MODELS = [
|
|
|
29
29
|
thinkingBudget: 1000,
|
|
30
30
|
description: 'Fast lightweight thinking mode for rapid iterations',
|
|
31
31
|
},
|
|
32
|
+
{
|
|
33
|
+
id: 'claude-opus-4.6',
|
|
34
|
+
name: 'Claude Opus 4.6 (Thinking)',
|
|
35
|
+
wireId: 'claude-opus-4-6-thinking',
|
|
36
|
+
contextWindow: 200000,
|
|
37
|
+
maxTokens: 64000,
|
|
38
|
+
supportsThinking: true,
|
|
39
|
+
thinkingBudget: 4000,
|
|
40
|
+
description: 'Anthropic Claude Opus 4.6 flagship architecture & reasoning model',
|
|
41
|
+
},
|
|
32
42
|
{
|
|
33
43
|
id: 'claude-sonnet-4.6',
|
|
34
44
|
name: 'Claude Sonnet 4.6 (Thinking)',
|
|
35
45
|
wireId: 'claude-sonnet-4-6',
|
|
36
46
|
contextWindow: 200000,
|
|
37
|
-
maxTokens:
|
|
47
|
+
maxTokens: 64000,
|
|
38
48
|
supportsThinking: true,
|
|
49
|
+
thinkingBudget: 4000,
|
|
39
50
|
description: 'Anthropic Claude Sonnet 4.6 with reasoning chain via Google Pro',
|
|
40
51
|
},
|
|
41
52
|
{
|