@kenkaiiii/gg-core 5.9.4 → 5.9.5

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.
@@ -1420,49 +1420,63 @@ var MODELS = [
1420
1420
  maxThinkingLevel: "high"
1421
1421
  },
1422
1422
  // ── OpenAI (Codex) ─────────────────────────────────────
1423
+ // GPT-5.6 family — three agentic coding tiers launched July 2026. All share a
1424
+ // 372K context window: the Codex repo's models.json lists both `context_window`
1425
+ // AND `max_context_window` as 372000 for every 5.6 variant, so (unlike 5.4/5.5,
1426
+ // whose public-API 1M window exceeds the Codex-product cap) there's no split
1427
+ // between the API and Codex-transport windows — a single `contextWindow` is
1428
+ // correct in both code paths. All three take text+image input, freeform
1429
+ // apply_patch, text+image web search, and parallel tool calls.
1423
1430
  {
1424
- id: "gpt-5.5",
1425
- name: "GPT-5.5",
1431
+ // Sol — "Latest frontier agentic coding model." (priority 1, default low).
1432
+ // Reasoning ladder: low → medium → high → xhigh → max → ultra. gg-ai's
1433
+ // ThinkingLevel tops out at `max`, so that's the cap here; the `ultra` rung
1434
+ // (auto task delegation) needs a ThinkingLevel extension to expose.
1435
+ id: "gpt-5.6-sol",
1436
+ name: "GPT-5.6 Sol",
1426
1437
  provider: "openai",
1427
- contextWindow: 105e4,
1428
- codexContextWindow: 272e3,
1438
+ contextWindow: 372e3,
1429
1439
  maxOutputTokens: 128e3,
1430
1440
  supportsThinking: true,
1431
1441
  supportsImages: true,
1432
1442
  supportsVideo: false,
1433
1443
  costTier: "high",
1434
- maxThinkingLevel: "xhigh"
1444
+ maxThinkingLevel: "max"
1435
1445
  },
1436
1446
  {
1437
- id: "gpt-5.4",
1438
- name: "GPT-5.4",
1447
+ // Terra — "Balanced agentic coding model for everyday work." (priority 2,
1448
+ // default medium). Same 372K context + ultra reasoning ladder as Sol.
1449
+ id: "gpt-5.6-terra",
1450
+ name: "GPT-5.6 Terra",
1439
1451
  provider: "openai",
1440
- contextWindow: 105e4,
1441
- codexContextWindow: 272e3,
1452
+ contextWindow: 372e3,
1442
1453
  maxOutputTokens: 128e3,
1443
1454
  supportsThinking: true,
1444
1455
  supportsImages: true,
1445
1456
  supportsVideo: false,
1446
- costTier: "high",
1447
- maxThinkingLevel: "xhigh"
1457
+ costTier: "medium",
1458
+ maxThinkingLevel: "max"
1448
1459
  },
1449
1460
  {
1450
- id: "gpt-5.4-mini",
1451
- name: "GPT-5.4 Mini",
1461
+ // Luna — "Fast and affordable agentic coding model." (priority 3, default
1462
+ // medium). Same 372K context; reasoning tops out at `max` (no `ultra` rung).
1463
+ id: "gpt-5.6-luna",
1464
+ name: "GPT-5.6 Luna",
1452
1465
  provider: "openai",
1453
- contextWindow: 4e5,
1466
+ contextWindow: 372e3,
1454
1467
  maxOutputTokens: 128e3,
1455
1468
  supportsThinking: true,
1456
1469
  supportsImages: true,
1457
1470
  supportsVideo: false,
1458
1471
  costTier: "low",
1459
- maxThinkingLevel: "xhigh"
1472
+ maxThinkingLevel: "max"
1460
1473
  },
1461
1474
  {
1462
- id: "gpt-5.3-codex",
1463
- name: "GPT-5.3 Codex",
1475
+ id: "gpt-5.5",
1476
+ name: "GPT-5.5",
1464
1477
  provider: "openai",
1465
- contextWindow: 4e5,
1478
+ contextWindow: 105e4,
1479
+ codexContextWindow: 272e3,
1466
1480
  maxOutputTokens: 128e3,
1467
1481
  supportsThinking: true,
1468
1482
  supportsImages: true,
@@ -1736,7 +1750,7 @@ function getVideoByteLimit(modelId) {
1736
1750
  }
1737
1751
  function getDefaultModel(provider) {
1738
1752
  if (provider === "xiaomi") return MODELS.find((m) => m.id === "mimo-v2.5-pro");
1739
- if (provider === "openai") return MODELS.find((m) => m.id === "gpt-5.5");
1753
+ if (provider === "openai") return MODELS.find((m) => m.id === "gpt-5.6-sol");
1740
1754
  if (provider === "gemini") return MODELS.find((m) => m.id === "gemini-3.1-flash-lite");
1741
1755
  if (provider === "glm") return MODELS.find((m) => m.id === "glm-5.2");
1742
1756
  if (provider === "moonshot") return MODELS.find((m) => m.id === "kimi-k2.7-code");
@@ -1815,4 +1829,4 @@ export {
1815
1829
  getSummaryModel,
1816
1830
  getFastModel
1817
1831
  };
1818
- //# sourceMappingURL=chunk-RC24I47O.js.map
1832
+ //# sourceMappingURL=chunk-7ZGFFWJ3.js.map