@lay111/dsh-plugin-google 1.0.9 → 1.0.10
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/package.json +1 -1
- package/src/models.js +5 -5
package/package.json
CHANGED
package/src/models.js
CHANGED
|
@@ -34,7 +34,7 @@ export const ANTIGRAVITY_MODELS = [
|
|
|
34
34
|
name: 'Claude Sonnet 4.6 (Thinking)',
|
|
35
35
|
wireId: 'claude-sonnet-4-6',
|
|
36
36
|
contextWindow: 200000,
|
|
37
|
-
maxTokens:
|
|
37
|
+
maxTokens: 8192,
|
|
38
38
|
supportsThinking: true,
|
|
39
39
|
description: 'Anthropic Claude Sonnet 4.6 with reasoning chain via Google Pro',
|
|
40
40
|
},
|
|
@@ -43,7 +43,7 @@ export const ANTIGRAVITY_MODELS = [
|
|
|
43
43
|
name: 'Gemini 3.1 Pro (High Reasoning)',
|
|
44
44
|
wireId: 'gemini-3.1-pro-low',
|
|
45
45
|
contextWindow: 1048576,
|
|
46
|
-
maxTokens:
|
|
46
|
+
maxTokens: 8192,
|
|
47
47
|
supportsThinking: true,
|
|
48
48
|
thinkingBudget: 8000,
|
|
49
49
|
description: 'Pro-tier flagship deep reasoning model (8k Thinking)',
|
|
@@ -53,7 +53,7 @@ export const ANTIGRAVITY_MODELS = [
|
|
|
53
53
|
name: 'Gemini 3.6 Flash High',
|
|
54
54
|
wireId: 'gemini-3.6-flash-high',
|
|
55
55
|
contextWindow: 1048576,
|
|
56
|
-
maxTokens:
|
|
56
|
+
maxTokens: 8192,
|
|
57
57
|
supportsThinking: true,
|
|
58
58
|
thinkingBudget: 4000,
|
|
59
59
|
description: 'Fast lightweight Flash model with reasoning',
|
|
@@ -63,7 +63,7 @@ export const ANTIGRAVITY_MODELS = [
|
|
|
63
63
|
name: 'Gemini 3.5 Flash',
|
|
64
64
|
wireId: 'gemini-3.5-flash-low',
|
|
65
65
|
contextWindow: 1048576,
|
|
66
|
-
maxTokens:
|
|
66
|
+
maxTokens: 8192,
|
|
67
67
|
supportsThinking: false,
|
|
68
68
|
description: 'Classic Flash model',
|
|
69
69
|
},
|
|
@@ -72,7 +72,7 @@ export const ANTIGRAVITY_MODELS = [
|
|
|
72
72
|
name: 'GPT-OSS 120B (Medium)',
|
|
73
73
|
wireId: 'gpt-oss-120b-medium',
|
|
74
74
|
contextWindow: 128000,
|
|
75
|
-
maxTokens:
|
|
75
|
+
maxTokens: 8192,
|
|
76
76
|
supportsThinking: true,
|
|
77
77
|
description: 'Open source 120B parameter reasoning model',
|
|
78
78
|
},
|