@kenkaiiii/gg-core 5.3.0 → 5.4.1
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-IFKGCWX2.js → chunk-3EWGFN2V.js} +16 -17
- package/dist/{chunk-IFKGCWX2.js.map → chunk-3EWGFN2V.js.map} +1 -1
- package/dist/index.cjs +15 -16
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/model-registry.cjs +15 -16
- package/dist/model-registry.cjs.map +1 -1
- package/dist/model-registry.js +1 -1
- package/package.json +2 -2
|
@@ -1353,22 +1353,21 @@ var NotLoggedInError = class extends Error {
|
|
|
1353
1353
|
// src/model-registry.ts
|
|
1354
1354
|
var MODELS = [
|
|
1355
1355
|
// ── Anthropic ──────────────────────────────────────────
|
|
1356
|
-
// NOTE: Claude
|
|
1357
|
-
// (
|
|
1358
|
-
//
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
// },
|
|
1356
|
+
// NOTE: Claude Mythos 5 (`claude-mythos-5`) is kept commented out — it's a
|
|
1357
|
+
// Project Glasswing (limited, invitation-only) model unavailable to most
|
|
1358
|
+
// users. Re-enable once it's generally available.
|
|
1359
|
+
{
|
|
1360
|
+
id: "claude-fable-5",
|
|
1361
|
+
name: "Claude Fable 5",
|
|
1362
|
+
provider: "anthropic",
|
|
1363
|
+
contextWindow: 1e6,
|
|
1364
|
+
maxOutputTokens: 128e3,
|
|
1365
|
+
supportsThinking: true,
|
|
1366
|
+
supportsImages: true,
|
|
1367
|
+
supportsVideo: false,
|
|
1368
|
+
costTier: "high",
|
|
1369
|
+
maxThinkingLevel: "max"
|
|
1370
|
+
},
|
|
1372
1371
|
// {
|
|
1373
1372
|
// // Mythos-class model offered through Project Glasswing (limited
|
|
1374
1373
|
// // availability, invitation-only). Same underlying model as Fable 5 with
|
|
@@ -1792,4 +1791,4 @@ export {
|
|
|
1792
1791
|
getMaxThinkingLevel,
|
|
1793
1792
|
getSummaryModel
|
|
1794
1793
|
};
|
|
1795
|
-
//# sourceMappingURL=chunk-
|
|
1794
|
+
//# sourceMappingURL=chunk-3EWGFN2V.js.map
|