@warmdrift/kgauto-compiler 2.0.0-alpha.85 → 2.0.0-alpha.86
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-FD3NFXDC.mjs → chunk-2MQIVVEU.mjs} +15 -3
- package/dist/{chunk-LO2JXTGG.mjs → chunk-QDWOMQYN.mjs} +21 -13
- package/dist/{chunk-WXN7FNXP.mjs → chunk-V4T2CBRI.mjs} +1 -1
- package/dist/glassbox/index.d.mts +3 -3
- package/dist/glassbox/index.d.ts +3 -3
- package/dist/glassbox-routes/format.d.mts +2 -2
- package/dist/glassbox-routes/format.d.ts +2 -2
- package/dist/glassbox-routes/index.d.mts +4 -4
- package/dist/glassbox-routes/index.d.ts +4 -4
- package/dist/glassbox-routes/index.js +35 -15
- package/dist/glassbox-routes/index.mjs +2 -2
- package/dist/glassbox-routes/react/index.d.mts +2 -2
- package/dist/glassbox-routes/react/index.d.ts +2 -2
- package/dist/index.d.mts +41 -4
- package/dist/index.d.ts +41 -4
- package/dist/index.js +127 -20
- package/dist/index.mjs +92 -7
- package/dist/{ir-JUoybVM-.d.mts → ir-5TJLAYKR.d.mts} +32 -0
- package/dist/{ir-DfrM71pA.d.ts → ir-C1zmvAh6.d.ts} +32 -0
- package/dist/key-health.js +1 -1
- package/dist/key-health.mjs +1 -1
- package/dist/profiles.d.mts +1 -1
- package/dist/profiles.d.ts +1 -1
- package/dist/profiles.js +15 -3
- package/dist/profiles.mjs +1 -1
- package/dist/{types-DLDJbCha.d.ts → types-8Goj1cKf.d.ts} +1 -1
- package/dist/{types-BGH_KAHu.d.mts → types-BcYPDXgJ.d.mts} +1 -1
- package/dist/{types-y42mwdvM.d.mts → types-BiV-qN_x.d.mts} +1 -1
- package/dist/{types-BqTKRECa.d.ts → types-C2H37XLR.d.ts} +1 -1
- package/package.json +1 -1
package/dist/profiles.js
CHANGED
|
@@ -644,9 +644,21 @@ var PROFILES_RAW = [
|
|
|
644
644
|
},
|
|
645
645
|
{
|
|
646
646
|
id: "gemini-2.5-pro",
|
|
647
|
-
verifiedAgainstDocs: "2026-
|
|
647
|
+
verifiedAgainstDocs: "2026-08-08",
|
|
648
648
|
provider: "google",
|
|
649
|
-
|
|
649
|
+
// alpha.86 — AVAILABILITY demotion, not a provider-lifecycle mirror.
|
|
650
|
+
// Google's docs still list 2.5-pro as Stable, but the serving layer
|
|
651
|
+
// disagrees per account cohort: tt-intel measured 4/4 refusals
|
|
652
|
+
// ("no longer available to new users", 2026-08-02, their bench), and
|
|
653
|
+
// kgauto's own key 429s on a FreeTier per-day quota (probed
|
|
654
|
+
// 2026-08-08). A chain anchor that hard-fails for whole account
|
|
655
|
+
// cohorts is not an anchor; `legacy` removes it from cost-ordered
|
|
656
|
+
// chains and new selection while keeping the profile resolvable for
|
|
657
|
+
// consumers who pass it explicitly. Re-promotion is one status flip
|
|
658
|
+
// if Google restores availability. The registry cannot yet express
|
|
659
|
+
// account-cohort availability as data — see interfaces/kgauto.md
|
|
660
|
+
// ## Requested 2026-08-02.
|
|
661
|
+
status: "legacy",
|
|
650
662
|
maxContextTokens: 1048576,
|
|
651
663
|
maxOutputTokens: 65535,
|
|
652
664
|
maxTools: 128,
|
|
@@ -676,7 +688,7 @@ var PROFILES_RAW = [
|
|
|
676
688
|
}
|
|
677
689
|
],
|
|
678
690
|
strengths: ["reasoning", "1m_context", "structured_output", "tool_use"],
|
|
679
|
-
weaknesses: ["pricing_above_200k"],
|
|
691
|
+
weaknesses: ["pricing_above_200k", "availability_restricted_by_account_cohort"],
|
|
680
692
|
// Master plan §3.3 anchor: tier-2 cross-provider in almost every chain.
|
|
681
693
|
// Sits on the frontier at perf-9 — close to Sonnet but cheaper input.
|
|
682
694
|
archetypePerf: {
|
package/dist/profiles.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { s as MutationApplied, B as BestPracticeAdvisory, F as FallbackReason, m as CallAttempt } from './ir-
|
|
1
|
+
import { s as MutationApplied, B as BestPracticeAdvisory, F as FallbackReason, m as CallAttempt } from './ir-5TJLAYKR.mjs';
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
* Glass-Box observability types (alpha.17).
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { s as MutationApplied, B as BestPracticeAdvisory, F as FallbackReason, m as CallAttempt } from './ir-
|
|
1
|
+
import { s as MutationApplied, B as BestPracticeAdvisory, F as FallbackReason, m as CallAttempt } from './ir-C1zmvAh6.js';
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
* Glass-Box observability types (alpha.17).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@warmdrift/kgauto-compiler",
|
|
3
|
-
"version": "2.0.0-alpha.
|
|
3
|
+
"version": "2.0.0-alpha.86",
|
|
4
4
|
"description": "Prompt compiler with executable provider knowledge for multi-model AI apps: normalized multi-provider transport with fallback chains, compile-time cliff guards, a curated model registry, and a telemetry flight recorder. Swap models without rewriting prompts.",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|