@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/profiles.js CHANGED
@@ -644,9 +644,21 @@ var PROFILES_RAW = [
644
644
  },
645
645
  {
646
646
  id: "gemini-2.5-pro",
647
- verifiedAgainstDocs: "2026-05-08",
647
+ verifiedAgainstDocs: "2026-08-08",
648
648
  provider: "google",
649
- status: "current",
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
@@ -9,7 +9,7 @@ import {
9
9
  profilesByProvider,
10
10
  resolveModelAlias,
11
11
  tryGetProfile
12
- } from "./chunk-FD3NFXDC.mjs";
12
+ } from "./chunk-2MQIVVEU.mjs";
13
13
  export {
14
14
  ALIASES,
15
15
  LATENCY_TIER_MS,
@@ -1,4 +1,4 @@
1
- import { i as Adapter, F as FallbackReason, x as SectionKind } from './ir-DfrM71pA.js';
1
+ import { i as Adapter, F as FallbackReason, x as SectionKind } from './ir-C1zmvAh6.js';
2
2
 
3
3
  /**
4
4
  * Wire contract for the Glass-Box Chrome extension's brain-poll endpoint.
@@ -1,4 +1,4 @@
1
- import { i as Adapter, F as FallbackReason, x as SectionKind } from './ir-JUoybVM-.mjs';
1
+ import { i as Adapter, F as FallbackReason, x as SectionKind } from './ir-5TJLAYKR.mjs';
2
2
 
3
3
  /**
4
4
  * Wire contract for the Glass-Box Chrome extension's brain-poll endpoint.
@@ -1,4 +1,4 @@
1
- import { s as MutationApplied, B as BestPracticeAdvisory, F as FallbackReason, m as CallAttempt } from './ir-JUoybVM-.mjs';
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-DfrM71pA.js';
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.85",
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",