@kenkaiiii/gg-core 5.63.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.
package/dist/index.cjs CHANGED
@@ -2142,35 +2142,20 @@ var MODELS = [
2142
2142
  costTier: "high",
2143
2143
  maxThinkingLevel: "ultra"
2144
2144
  },
2145
- // GPT-5.6 family — three agentic coding tiers launched July 2026. The public
2146
- // Responses API advertises a 1.05M context window; OpenAI's Codex product
2147
- // catalog advertises 272K on the ChatGPT OAuth route (corrected from the
2148
- // initially advertised 372K — openai/codex PR #33972, Jul 18 2026 hotfix). All three take
2149
- // text+image input, freeform apply_patch, text+image web search, and parallel
2150
- // tool calls.
2145
+ // GPT-6 Sol + Luna — released 2026-09-22 below Astra, replacing the whole
2146
+ // GPT-5.6 family (Sol/Terra/Luna; there is no GPT-6 Terra — OpenAI's Codex
2147
+ // catalog upgrades 5.6 Terra to 6 Sol). Both need a Codex client >= 0.155.0
2148
+ // on the ChatGPT OAuth route. Same window split as Astra: 1.05M on the public
2149
+ // Responses API, 272K on the Codex route; 128K output, text+image input,
2150
+ // freeform apply_patch, responses-lite transport. The 5.6 ids are retired —
2151
+ // a saved session on one falls back to the provider default on next start.
2151
2152
  {
2152
- // Sol — "Latest frontier agentic coding model." (priority 1, default low).
2153
- // Reasoning ladder: low → medium → high → xhigh → max → ultra. Ultra is a
2154
- // Codex orchestration preset: the request uses max effort while the local
2155
- // runtime proactively delegates suitable independent work to subagents.
2156
- id: "gpt-5.6-sol",
2157
- name: "GPT-5.6 Sol",
2158
- provider: "openai",
2159
- contextWindow: 105e4,
2160
- codexContextWindow: 272e3,
2161
- maxOutputTokens: 128e3,
2162
- supportsThinking: true,
2163
- defaultThinkingLevel: "low",
2164
- supportsImages: true,
2165
- supportsVideo: false,
2166
- costTier: "high",
2167
- maxThinkingLevel: "ultra"
2168
- },
2169
- {
2170
- // Terra — "Balanced agentic coding model for everyday work." (priority 2,
2171
- // default medium).
2172
- id: "gpt-5.6-terra",
2173
- name: "GPT-5.6 Terra",
2153
+ // Sol — "Workhorse model for coding and everyday work." (Codex priority 2,
2154
+ // default medium). $2/$10 MTok. Ladder low → medium → high → xhigh → max →
2155
+ // ultra; ultra is the Codex orchestration preset (max effort on the wire +
2156
+ // proactive local subagent delegation).
2157
+ id: "gpt-6-sol",
2158
+ name: "GPT-6 Sol",
2174
2159
  provider: "openai",
2175
2160
  contextWindow: 105e4,
2176
2161
  codexContextWindow: 272e3,
@@ -2183,10 +2168,10 @@ var MODELS = [
2183
2168
  maxThinkingLevel: "ultra"
2184
2169
  },
2185
2170
  {
2186
- // Luna — "Fast and affordable agentic coding model." (priority 3, default
2187
- // medium). Reasoning tops out at `max`.
2188
- id: "gpt-5.6-luna",
2189
- name: "GPT-5.6 Luna",
2171
+ // Luna — "Fast and affordable model for easier tasks." (Codex priority 3,
2172
+ // default medium). $0.10/$0.50 MTok. Reasoning tops out at `max`.
2173
+ id: "gpt-6-luna",
2174
+ name: "GPT-6 Luna",
2190
2175
  provider: "openai",
2191
2176
  contextWindow: 105e4,
2192
2177
  codexContextWindow: 272e3,
@@ -2635,7 +2620,7 @@ function getVideoByteLimit(modelId) {
2635
2620
  }
2636
2621
  function getDefaultModel(provider) {
2637
2622
  if (provider === "xiaomi") return MODELS.find((m) => m.id === "mimo-v2.6-pro");
2638
- if (provider === "openai") return MODELS.find((m) => m.id === "gpt-5.6-sol");
2623
+ if (provider === "openai") return MODELS.find((m) => m.id === "gpt-6-sol");
2639
2624
  if (provider === "gemini") return MODELS.find((m) => m.id === "gemini-3.1-flash-lite");
2640
2625
  if (provider === "glm") return MODELS.find((m) => m.id === "glm-5.3");
2641
2626
  if (provider === "moonshot") return MODELS.find((m) => m.id === "kimi-k3");