@kenkaiiii/gg-core 5.62.0 → 5.64.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.
@@ -1930,12 +1930,17 @@ var MODELS = [
1930
1930
  // maxThinkingLevel: "max",
1931
1931
  // },
1932
1932
  {
1933
- // Released 2026-07-24 — "For complex agentic coding and enterprise work".
1934
- // Near-Fable capability at half the price ($5/$25 vs $10/$50). Adaptive
1935
- // thinking with the full effort ladder (low→max, xhigh included); dateless
1936
- // ID is the canonical pinned snapshot (post-4.6 naming scheme).
1937
- id: "claude-opus-5",
1938
- name: "Claude Opus 5",
1933
+ // Released 2026-09-22 — "built for long-running agentic coding and knowledge
1934
+ // work". Fable-5.1-class output at $4/$20 MTok (40% below Opus 5), 1M
1935
+ // context, 128K output, image input. Same always-on adaptive thinking with
1936
+ // the full effort ladder (low→max, xhigh included; the API-side default
1937
+ // effort is `medium`) and the same Fable 5.1 constraints gg-ai already
1938
+ // handles (no forced tool use, thinking can't be disabled). Also eligible
1939
+ // for the gated `speed: "fast"` research preview (waitlist-only, premium
1940
+ // $8/$40 pricing — not wired up). Opus 5 is retired here — a session that
1941
+ // still has it saved falls back to the provider default on next start.
1942
+ id: "claude-opus-5-5",
1943
+ name: "Claude Opus 5.5",
1939
1944
  provider: "anthropic",
1940
1945
  contextWindow: 1e6,
1941
1946
  maxOutputTokens: 128e3,
@@ -1994,35 +1999,20 @@ var MODELS = [
1994
1999
  costTier: "high",
1995
2000
  maxThinkingLevel: "ultra"
1996
2001
  },
1997
- // GPT-5.6 family — three agentic coding tiers launched July 2026. The public
1998
- // Responses API advertises a 1.05M context window; OpenAI's Codex product
1999
- // catalog advertises 272K on the ChatGPT OAuth route (corrected from the
2000
- // initially advertised 372K — openai/codex PR #33972, Jul 18 2026 hotfix). All three take
2001
- // text+image input, freeform apply_patch, text+image web search, and parallel
2002
- // tool calls.
2002
+ // GPT-6 Sol + Luna — released 2026-09-22 below Astra, replacing the whole
2003
+ // GPT-5.6 family (Sol/Terra/Luna; there is no GPT-6 Terra — OpenAI's Codex
2004
+ // catalog upgrades 5.6 Terra to 6 Sol). Both need a Codex client >= 0.155.0
2005
+ // on the ChatGPT OAuth route. Same window split as Astra: 1.05M on the public
2006
+ // Responses API, 272K on the Codex route; 128K output, text+image input,
2007
+ // freeform apply_patch, responses-lite transport. The 5.6 ids are retired —
2008
+ // a saved session on one falls back to the provider default on next start.
2003
2009
  {
2004
- // Sol — "Latest frontier agentic coding model." (priority 1, default low).
2005
- // Reasoning ladder: low → medium → high → xhigh → max → ultra. Ultra is a
2006
- // Codex orchestration preset: the request uses max effort while the local
2007
- // runtime proactively delegates suitable independent work to subagents.
2008
- id: "gpt-5.6-sol",
2009
- name: "GPT-5.6 Sol",
2010
- provider: "openai",
2011
- contextWindow: 105e4,
2012
- codexContextWindow: 272e3,
2013
- maxOutputTokens: 128e3,
2014
- supportsThinking: true,
2015
- defaultThinkingLevel: "low",
2016
- supportsImages: true,
2017
- supportsVideo: false,
2018
- costTier: "high",
2019
- maxThinkingLevel: "ultra"
2020
- },
2021
- {
2022
- // Terra — "Balanced agentic coding model for everyday work." (priority 2,
2023
- // default medium).
2024
- id: "gpt-5.6-terra",
2025
- name: "GPT-5.6 Terra",
2010
+ // Sol — "Workhorse model for coding and everyday work." (Codex priority 2,
2011
+ // default medium). $2/$10 MTok. Ladder low → medium → high → xhigh → max →
2012
+ // ultra; ultra is the Codex orchestration preset (max effort on the wire +
2013
+ // proactive local subagent delegation).
2014
+ id: "gpt-6-sol",
2015
+ name: "GPT-6 Sol",
2026
2016
  provider: "openai",
2027
2017
  contextWindow: 105e4,
2028
2018
  codexContextWindow: 272e3,
@@ -2035,10 +2025,10 @@ var MODELS = [
2035
2025
  maxThinkingLevel: "ultra"
2036
2026
  },
2037
2027
  {
2038
- // Luna — "Fast and affordable agentic coding model." (priority 3, default
2039
- // medium). Reasoning tops out at `max`.
2040
- id: "gpt-5.6-luna",
2041
- name: "GPT-5.6 Luna",
2028
+ // Luna — "Fast and affordable model for easier tasks." (Codex priority 3,
2029
+ // default medium). $0.10/$0.50 MTok. Reasoning tops out at `max`.
2030
+ id: "gpt-6-luna",
2031
+ name: "GPT-6 Luna",
2042
2032
  provider: "openai",
2043
2033
  contextWindow: 105e4,
2044
2034
  codexContextWindow: 272e3,
@@ -2487,7 +2477,7 @@ function getVideoByteLimit(modelId) {
2487
2477
  }
2488
2478
  function getDefaultModel(provider) {
2489
2479
  if (provider === "xiaomi") return MODELS.find((m) => m.id === "mimo-v2.6-pro");
2490
- if (provider === "openai") return MODELS.find((m) => m.id === "gpt-5.6-sol");
2480
+ if (provider === "openai") return MODELS.find((m) => m.id === "gpt-6-sol");
2491
2481
  if (provider === "gemini") return MODELS.find((m) => m.id === "gemini-3.1-flash-lite");
2492
2482
  if (provider === "glm") return MODELS.find((m) => m.id === "glm-5.3");
2493
2483
  if (provider === "moonshot") return MODELS.find((m) => m.id === "kimi-k3");
@@ -2609,4 +2599,4 @@ export {
2609
2599
  getSummaryModel,
2610
2600
  getFastModel
2611
2601
  };
2612
- //# sourceMappingURL=chunk-ZVBMFKDR.js.map
2602
+ //# sourceMappingURL=chunk-WXKRLK5P.js.map