@kenkaiiii/gg-core 5.49.10 → 5.50.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/{chunk-VMWOH3GU.js → chunk-GSJ4NQWN.js} +31 -8
- package/dist/{chunk-VMWOH3GU.js.map → chunk-GSJ4NQWN.js.map} +1 -1
- package/dist/index.cjs +30 -7
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/model-registry.cjs +30 -7
- package/dist/model-registry.cjs.map +1 -1
- package/dist/model-registry.d.cts +3 -2
- package/dist/model-registry.d.ts +3 -2
- package/dist/model-registry.js +1 -1
- package/package.json +2 -2
|
@@ -2198,13 +2198,12 @@ var MODELS = [
|
|
|
2198
2198
|
maxThinkingLevel: "high"
|
|
2199
2199
|
},
|
|
2200
2200
|
// ── Z.AI (GLM) ─────────────────────────────────────────
|
|
2201
|
-
// GLM
|
|
2202
|
-
//
|
|
2203
|
-
//
|
|
2204
|
-
//
|
|
2205
|
-
//
|
|
2206
|
-
//
|
|
2207
|
-
// Z.AI's own default — the rungs below it live in thinking-level.ts.
|
|
2201
|
+
// Two GLM entries, both live on the coding endpoint (verified against its
|
|
2202
|
+
// /models list). The pre-5.3 ids stay retired: they routed to strictly worse
|
|
2203
|
+
// coding for the same plan quota, and the endpoint already answers `glm-5.2`
|
|
2204
|
+
// requests as glm-5.3.
|
|
2205
|
+
// `max` is both the ceiling and Z.AI's own default — the rungs below it live
|
|
2206
|
+
// in thinking-level.ts.
|
|
2208
2207
|
{
|
|
2209
2208
|
id: "glm-5.3",
|
|
2210
2209
|
name: "GLM-5.3",
|
|
@@ -2217,6 +2216,30 @@ var MODELS = [
|
|
|
2217
2216
|
costTier: "medium",
|
|
2218
2217
|
maxThinkingLevel: "max"
|
|
2219
2218
|
},
|
|
2219
|
+
// GLM-5.3-Flash (released 2026-08-26): 320B-A18B natively multimodal sibling
|
|
2220
|
+
// at ~1/20th of 5.3's API price with 3× the coding-plan quota, so it is the
|
|
2221
|
+
// provider's `low` tier — scout sub-agents and compaction summaries route
|
|
2222
|
+
// here instead of paying 5.3 rates.
|
|
2223
|
+
// Images are native on the coding endpoint (verified: base64 data URL in an
|
|
2224
|
+
// `image_url` block answers correctly), which also means GLM image
|
|
2225
|
+
// attachments go inline for this model rather than through the zai_vision MCP
|
|
2226
|
+
// detour that `supportsImages: false` triggers.
|
|
2227
|
+
// Video/file input is documented but unverified on this transport, so it
|
|
2228
|
+
// stays off until measured. Thinking cannot be disabled server-side (Z.AI
|
|
2229
|
+
// maps a `disabled` toggle to the `low` rung and answers 200), and unlike
|
|
2230
|
+
// 5.3 it accepts any reasoning_effort string without a 400.
|
|
2231
|
+
{
|
|
2232
|
+
id: "glm-5.3-flash",
|
|
2233
|
+
name: "GLM-5.3-Flash",
|
|
2234
|
+
provider: "glm",
|
|
2235
|
+
contextWindow: 1e6,
|
|
2236
|
+
maxOutputTokens: 131072,
|
|
2237
|
+
supportsThinking: true,
|
|
2238
|
+
supportsImages: true,
|
|
2239
|
+
supportsVideo: false,
|
|
2240
|
+
costTier: "low",
|
|
2241
|
+
maxThinkingLevel: "max"
|
|
2242
|
+
},
|
|
2220
2243
|
// ── MiniMax ────────────────────────────────────────────
|
|
2221
2244
|
{
|
|
2222
2245
|
id: "MiniMax-M3",
|
|
@@ -2525,4 +2548,4 @@ export {
|
|
|
2525
2548
|
getSummaryModel,
|
|
2526
2549
|
getFastModel
|
|
2527
2550
|
};
|
|
2528
|
-
//# sourceMappingURL=chunk-
|
|
2551
|
+
//# sourceMappingURL=chunk-GSJ4NQWN.js.map
|