@kenkaiiii/gg-core 5.43.0 → 5.44.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.
@@ -2157,11 +2157,16 @@ var MODELS = [
2157
2157
  maxThinkingLevel: "high"
2158
2158
  },
2159
2159
  // ── Z.AI (GLM) ─────────────────────────────────────────
2160
- // GLM-5.2: coding-first flagship with a usable 1M-token context window
2161
- // (5x jump over GLM-5.1's ~200K) and 131K max output. Released 2026-06-13.
2160
+ // GLM-5.3 is the only GLM entry: it supersedes 5.2 (same GLM-5 base, all
2161
+ // gains from post-training) and the coding endpoint already answers
2162
+ // `glm-5.2` requests as glm-5.3, so the older ids were menu clutter that
2163
+ // routed to strictly worse coding for the same plan quota.
2164
+ // Released 2026-08-14; live on the coding endpoint (verified), while the
2165
+ // standard paas API is still "coming soon". `max` is both the ceiling and
2166
+ // Z.AI's own default — the rungs below it live in thinking-level.ts.
2162
2167
  {
2163
- id: "glm-5.2",
2164
- name: "GLM-5.2",
2168
+ id: "glm-5.3",
2169
+ name: "GLM-5.3",
2165
2170
  provider: "glm",
2166
2171
  contextWindow: 1e6,
2167
2172
  maxOutputTokens: 131072,
@@ -2169,43 +2174,7 @@ var MODELS = [
2169
2174
  supportsImages: false,
2170
2175
  supportsVideo: false,
2171
2176
  costTier: "medium",
2172
- maxThinkingLevel: "high"
2173
- },
2174
- {
2175
- id: "glm-5.1",
2176
- name: "GLM-5.1",
2177
- provider: "glm",
2178
- contextWindow: 204800,
2179
- maxOutputTokens: 131072,
2180
- supportsThinking: true,
2181
- supportsImages: false,
2182
- supportsVideo: false,
2183
- costTier: "medium",
2184
- maxThinkingLevel: "high"
2185
- },
2186
- {
2187
- id: "glm-4.7",
2188
- name: "GLM-4.7",
2189
- provider: "glm",
2190
- contextWindow: 2e5,
2191
- maxOutputTokens: 131072,
2192
- supportsThinking: true,
2193
- supportsImages: false,
2194
- supportsVideo: false,
2195
- costTier: "low",
2196
- maxThinkingLevel: "high"
2197
- },
2198
- {
2199
- id: "glm-4.7-flash",
2200
- name: "GLM-4.7 Flash",
2201
- provider: "glm",
2202
- contextWindow: 2e5,
2203
- maxOutputTokens: 131072,
2204
- supportsThinking: true,
2205
- supportsImages: false,
2206
- supportsVideo: false,
2207
- costTier: "low",
2208
- maxThinkingLevel: "high"
2177
+ maxThinkingLevel: "max"
2209
2178
  },
2210
2179
  // ── MiniMax ────────────────────────────────────────────
2211
2180
  {
@@ -2350,7 +2319,7 @@ function getDefaultModel(provider) {
2350
2319
  if (provider === "xiaomi") return MODELS.find((m) => m.id === "mimo-v2.5-pro");
2351
2320
  if (provider === "openai") return MODELS.find((m) => m.id === "gpt-5.6-sol");
2352
2321
  if (provider === "gemini") return MODELS.find((m) => m.id === "gemini-3.1-flash-lite");
2353
- if (provider === "glm") return MODELS.find((m) => m.id === "glm-5.2");
2322
+ if (provider === "glm") return MODELS.find((m) => m.id === "glm-5.3");
2354
2323
  if (provider === "moonshot") return MODELS.find((m) => m.id === "kimi-k3");
2355
2324
  if (provider === "minimax") return MODELS.find((m) => m.id === "MiniMax-M3");
2356
2325
  if (provider === "deepseek") return MODELS.find((m) => m.id === "deepseek-v4-pro");
@@ -2468,4 +2437,4 @@ export {
2468
2437
  getSummaryModel,
2469
2438
  getFastModel
2470
2439
  };
2471
- //# sourceMappingURL=chunk-JH7OVHH5.js.map
2440
+ //# sourceMappingURL=chunk-CP2WHB57.js.map