@lay111/dsh-plugin-google 1.0.8 → 1.0.9

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.
Files changed (3) hide show
  1. package/README.md +5 -5
  2. package/package.json +1 -1
  3. package/src/models.js +10 -20
package/README.md CHANGED
@@ -41,12 +41,12 @@
41
41
  | 模型 ID | 模型名称 | 深度思考 (Thinking) | 特点与适用场景 |
42
42
  | :--- | :--- | :---: | :--- |
43
43
  | **`gemini-3.7-flash`** | **Gemini 3.7 Flash High** *(默认旗舰)* | **10,000 Budget 满血思考** | **日常主力推荐**。超强代码逻辑、系统级跨文件重构与复杂 Bug 诊断 |
44
- | **`gemini-3.7-flash-standard`** | Gemini 3.7 Flash (Standard) | 快速低延迟 | 适合单文件快速小改动与日常常规提问 |
45
- | **`gemini-3.6-flash`** | Gemini 3.6 Flash | 4,000 思考 | 速度极快的高性价比轻量模型 |
46
- | **`gemini-3.5-flash`** | Gemini 3.5 Flash | 4,000 思考 | 经典 Flash 系列稳定模型 |
47
- | **`gemini-3.1-pro`** | Gemini 3.1 Pro (Agent) | 8,000 思考 | 专为长上下文深度推演设计的 Pro 级模型 |
44
+ | **`gemini-3.7-flash-medium`** | Gemini 3.7 Flash Medium | 5,000 思考 | 均衡模式,兼顾思考深度与低延迟,配额更充裕 |
45
+ | **`gemini-3.7-flash-low`** | Gemini 3.7 Flash Low (Fast) | 1,000 思考 | 极速响应,适合单文件快速修改与小改动 |
48
46
  | **`claude-sonnet-4.6`** | Claude Sonnet 4.6 (Thinking) | 深度思考 | 逻辑严密、遵循规范性极强的 Anthropic 顶尖编程模型 |
49
- | **`claude-opus-4.6`** | Claude Opus 4.6 (Thinking) | 超强思考 | 适合超大型复杂架构设计与高阶算法推演 |
47
+ | **`gemini-3.1-pro`** | Gemini 3.1 Pro (High Reasoning) | 8,000 思考 | Pro 级旗舰深度推演大模型(100万超大上下文) |
48
+ | **`gemini-3.6-flash`** | Gemini 3.6 Flash High | 4,000 思考 | 经典速度极快的高性价比轻量模型 |
49
+ | **`gemini-3.5-flash`** | Gemini 3.5 Flash | 基础模式 | 经典 Flash 系列稳定模型 |
50
50
  | **`gpt-oss-120b`** | GPT-OSS 120B (Medium) | 基础思考 | 开源生态 120B 大模型 |
51
51
 
52
52
  ---
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lay111/dsh-plugin-google",
3
- "version": "1.0.8",
3
+ "version": "1.0.9",
4
4
  "description": "Native DeepSeek Harness Plugin for Google Antigravity Pro & Gemini/Claude Models",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
package/src/models.js CHANGED
@@ -38,6 +38,16 @@ export const ANTIGRAVITY_MODELS = [
38
38
  supportsThinking: true,
39
39
  description: 'Anthropic Claude Sonnet 4.6 with reasoning chain via Google Pro',
40
40
  },
41
+ {
42
+ id: 'gemini-3.1-pro',
43
+ name: 'Gemini 3.1 Pro (High Reasoning)',
44
+ wireId: 'gemini-3.1-pro-low',
45
+ contextWindow: 1048576,
46
+ maxTokens: 65536,
47
+ supportsThinking: true,
48
+ thinkingBudget: 8000,
49
+ description: 'Pro-tier flagship deep reasoning model (8k Thinking)',
50
+ },
41
51
  {
42
52
  id: 'gemini-3.6-flash',
43
53
  name: 'Gemini 3.6 Flash High',
@@ -57,26 +67,6 @@ export const ANTIGRAVITY_MODELS = [
57
67
  supportsThinking: false,
58
68
  description: 'Classic Flash model',
59
69
  },
60
- {
61
- id: 'gemini-3.1-pro',
62
- name: 'Gemini 3.1 Pro (Agent)',
63
- wireId: 'gemini-3.1-pro-low',
64
- contextWindow: 1048576,
65
- maxTokens: 65536,
66
- supportsThinking: true,
67
- thinkingBudget: 8000,
68
- description: 'Pro-tier deep reasoning agent model',
69
- },
70
- {
71
- id: 'gemini-pro-agent',
72
- name: 'Gemini Pro Agent (Ultra)',
73
- wireId: 'gemini-pro-agent',
74
- contextWindow: 1048576,
75
- maxTokens: 65536,
76
- supportsThinking: true,
77
- thinkingBudget: 8000,
78
- description: 'Google Pro Agent model for long-horizon agentic execution',
79
- },
80
70
  {
81
71
  id: 'gpt-oss-120b',
82
72
  name: 'GPT-OSS 120B (Medium)',