@kenkaiiii/gg-core 5.10.0 → 5.11.0
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/{chunk-7ZGFFWJ3.js → chunk-IQRW2I2I.js} +6 -6
- package/dist/{chunk-7ZGFFWJ3.js.map → chunk-IQRW2I2I.js.map} +1 -1
- package/dist/index.cjs +7 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/dist/model-registry.cjs +5 -5
- package/dist/model-registry.cjs.map +1 -1
- package/dist/model-registry.js +1 -1
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
|
@@ -1535,9 +1535,9 @@ var MODELS = [
|
|
|
1535
1535
|
// apply_patch, text+image web search, and parallel tool calls.
|
|
1536
1536
|
{
|
|
1537
1537
|
// Sol — "Latest frontier agentic coding model." (priority 1, default low).
|
|
1538
|
-
// Reasoning ladder: low → medium → high → xhigh → max → ultra.
|
|
1539
|
-
//
|
|
1540
|
-
//
|
|
1538
|
+
// Reasoning ladder: low → medium → high → xhigh → max → ultra. Ultra is a
|
|
1539
|
+
// Codex orchestration preset: the request uses max effort while the local
|
|
1540
|
+
// runtime proactively delegates suitable independent work to subagents.
|
|
1541
1541
|
id: "gpt-5.6-sol",
|
|
1542
1542
|
name: "GPT-5.6 Sol",
|
|
1543
1543
|
provider: "openai",
|
|
@@ -1547,7 +1547,7 @@ var MODELS = [
|
|
|
1547
1547
|
supportsImages: true,
|
|
1548
1548
|
supportsVideo: false,
|
|
1549
1549
|
costTier: "high",
|
|
1550
|
-
maxThinkingLevel: "
|
|
1550
|
+
maxThinkingLevel: "ultra"
|
|
1551
1551
|
},
|
|
1552
1552
|
{
|
|
1553
1553
|
// Terra — "Balanced agentic coding model for everyday work." (priority 2,
|
|
@@ -1561,7 +1561,7 @@ var MODELS = [
|
|
|
1561
1561
|
supportsImages: true,
|
|
1562
1562
|
supportsVideo: false,
|
|
1563
1563
|
costTier: "medium",
|
|
1564
|
-
maxThinkingLevel: "
|
|
1564
|
+
maxThinkingLevel: "ultra"
|
|
1565
1565
|
},
|
|
1566
1566
|
{
|
|
1567
1567
|
// Luna — "Fast and affordable agentic coding model." (priority 3, default
|
|
@@ -1902,7 +1902,8 @@ var OPENAI_GPT_56_THINKING_LEVELS = [
|
|
|
1902
1902
|
"medium",
|
|
1903
1903
|
"high",
|
|
1904
1904
|
"xhigh",
|
|
1905
|
-
"max"
|
|
1905
|
+
"max",
|
|
1906
|
+
"ultra"
|
|
1906
1907
|
];
|
|
1907
1908
|
var SAKANA_THINKING_LEVELS = ["high", "xhigh"];
|
|
1908
1909
|
var ANTHROPIC_OPUS_48_47_THINKING_LEVELS = [
|