@kenkaiiii/gg-core 5.55.0 → 5.56.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.
@@ -2045,8 +2045,8 @@ var MODELS = [
2045
2045
  // ── Sakana (Fugu) ──────────────────────────────────────
2046
2046
  // Sakana Fugu is a multi-agent system surfaced as a standard LLM via the
2047
2047
  // OpenAI-compatible Sakana API (https://api.sakana.ai/v1). Both models take
2048
- // text + image input and only accept "high"/"xhigh" reasoning effort, so the
2049
- // top tier is `xhigh`. `fugu` routes across all providers; `fugu-ultra` is
2048
+ // text + image input. Plain Fugu stops at xhigh; Ultra v1.1 also supports max.
2049
+ // `fugu` routes across all providers; `fugu-ultra` is
2050
2050
  // the heavier tier (may need larger client timeouts on complex tasks).
2051
2051
  {
2052
2052
  id: "fugu",
@@ -2070,7 +2070,8 @@ var MODELS = [
2070
2070
  supportsImages: true,
2071
2071
  supportsVideo: false,
2072
2072
  costTier: "high",
2073
- maxThinkingLevel: "xhigh"
2073
+ // The rolling alias now serves v1.1, which adds a distinct max effort.
2074
+ maxThinkingLevel: "max"
2074
2075
  },
2075
2076
  // ── xAI (Grok) ─────────────────────────────────────────
2076
2077
  // Grok 4.6 (released 2026-08-12) is xAI's flagship for coding, agentic tasks,
@@ -2124,6 +2125,34 @@ var MODELS = [
2124
2125
  costTier: "low",
2125
2126
  maxThinkingLevel: "high"
2126
2127
  },
2128
+ // Keep 3.1 Flash Lite first for the working OAuth default and fast-model routing.
2129
+ // New GA models are opt-in; Code Assist access varies by account.
2130
+ {
2131
+ id: "gemini-3.8-flash",
2132
+ name: "Gemini 3.8 Flash",
2133
+ provider: "gemini",
2134
+ contextWindow: 1048576,
2135
+ maxOutputTokens: 65536,
2136
+ supportsThinking: true,
2137
+ supportsImages: true,
2138
+ supportsVideo: true,
2139
+ maxVideoBytes: 20 * 1024 * 1024,
2140
+ costTier: "low",
2141
+ maxThinkingLevel: "high"
2142
+ },
2143
+ {
2144
+ id: "gemini-3.5-flash-lite",
2145
+ name: "Gemini 3.5 Flash Lite",
2146
+ provider: "gemini",
2147
+ contextWindow: 1048576,
2148
+ maxOutputTokens: 65536,
2149
+ supportsThinking: true,
2150
+ supportsImages: true,
2151
+ supportsVideo: true,
2152
+ maxVideoBytes: 20 * 1024 * 1024,
2153
+ costTier: "low",
2154
+ maxThinkingLevel: "high"
2155
+ },
2127
2156
  {
2128
2157
  // Gemini 3.7 Flash (released 2026-08-13) — Google's most capable Flash for
2129
2158
  // coding, agents, and multi-step execution; GA-stable on the Gemini API as
@@ -2131,7 +2160,7 @@ var MODELS = [
2131
2160
  // Sent over our Code Assist (OAuth) transport ahead of gemini-cli — upstream
2132
2161
  // hasn't listed 3.7 yet (google-gemini/gemini-cli#28802, still open) — so
2133
2162
  // free/personal accounts 404 (entitlement-gated) while Code Assist
2134
- // Standard/Enterprise accounts get it. Listed SECOND, after flash-lite:
2163
+ // Standard/Enterprise accounts get it. Kept after the working flash-lite:
2135
2164
  // getFastModel picks the first low-tier entry, and flash-lite is the one
2136
2165
  // that works on every account.
2137
2166
  id: "gemini-3.7-flash",
@@ -2323,21 +2352,19 @@ var MODELS = [
2323
2352
  {
2324
2353
  // `deepseek-v4-pro` now serves DeepSeek-V4-Pro-0813 (released 2026-08-13,
2325
2354
  // first STABLE V4 Pro — supersedes the April preview; calling name
2326
- // unchanged, same 1.6T/49B MoE). 1M context, 384K (393,216) max output,
2327
- // text-only, reasoning ladder low/high plus Think Max mapped from our
2328
- // `xhigh`. ~$0.43/$0.87 per MTok on DeepSeek's own API, so a mid-tier
2329
- // price band rather than the preview's top band.
2355
+ // unchanged, same 1.6T/49B MoE). 1M context, text-only, low/high/max effort.
2356
+ // Docs abbreviate output as 384K; use the same conservative 384,000-token
2357
+ // application cap across V4 models rather than mixing decimal/binary units.
2330
2358
  id: "deepseek-v4-pro",
2331
2359
  name: "DeepSeek V4 Pro",
2332
2360
  provider: "deepseek",
2333
2361
  contextWindow: 1048576,
2334
- maxOutputTokens: 393216,
2362
+ maxOutputTokens: 384e3,
2335
2363
  supportsThinking: true,
2336
2364
  supportsImages: false,
2337
2365
  supportsVideo: false,
2338
2366
  costTier: "medium",
2339
- // DeepSeek V4 maps `xhigh` → its internal `max` tier.
2340
- maxThinkingLevel: "xhigh"
2367
+ maxThinkingLevel: "max"
2341
2368
  },
2342
2369
  {
2343
2370
  id: "deepseek-v4-flash",
@@ -2349,7 +2376,20 @@ var MODELS = [
2349
2376
  supportsImages: false,
2350
2377
  supportsVideo: false,
2351
2378
  costTier: "low",
2352
- maxThinkingLevel: "xhigh"
2379
+ maxThinkingLevel: "max"
2380
+ },
2381
+ // Opt-in experimental vision sibling; never replaces the stable summary model.
2382
+ {
2383
+ id: "deepseek-v4-flash-vision-exp",
2384
+ name: "DeepSeek V4 Flash Vision (Experimental)",
2385
+ provider: "deepseek",
2386
+ contextWindow: 1048576,
2387
+ maxOutputTokens: 384e3,
2388
+ supportsThinking: true,
2389
+ supportsImages: true,
2390
+ supportsVideo: false,
2391
+ costTier: "low",
2392
+ maxThinkingLevel: "max"
2353
2393
  },
2354
2394
  // ── OpenRouter ─────────────────────────────────────────
2355
2395
  {
@@ -2359,8 +2399,10 @@ var MODELS = [
2359
2399
  contextWindow: 1e6,
2360
2400
  maxOutputTokens: 65536,
2361
2401
  supportsThinking: true,
2362
- supportsImages: false,
2363
- supportsVideo: false,
2402
+ supportsImages: true,
2403
+ supportsVideo: true,
2404
+ // Practical inline-payload cap, not an asserted provider maximum.
2405
+ maxVideoBytes: 20 * 1024 * 1024,
2364
2406
  costTier: "medium",
2365
2407
  maxThinkingLevel: "high"
2366
2408
  },
@@ -2563,4 +2605,4 @@ export {
2563
2605
  getSummaryModel,
2564
2606
  getFastModel
2565
2607
  };
2566
- //# sourceMappingURL=chunk-WPX6Z5NG.js.map
2608
+ //# sourceMappingURL=chunk-PSLSIL3V.js.map