@oh-my-pi/pi-catalog 16.1.4 → 16.1.5

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/CHANGELOG.md CHANGED
@@ -6,7 +6,7 @@
6
6
 
7
7
  ### Fixed
8
8
 
9
- - Fixed Claude 4.6 routing on the `google-antigravity` (and `google-gemini-cli`) Cloud Code Assist providers, whose backend exposes the models asymmetrically: `claude-sonnet-4-6` has no `-thinking` twin and `claude-opus-4-6` has only the `-thinking` twin. The shared `thinkingPair` family was routing thinking efforts on `claude-sonnet-4-6` to a non-existent `claude-sonnet-4-6-thinking` wire id (404 `Requested entity was not found`); replaced both 4.6 entries with bespoke single-wire families so every effort and off resolve to the live wire id. Added `claude-sonnet-4-6` and `claude-opus-4-6-thinking` entries to `ANTIGRAVITY_MODEL_WIRE_PROFILES` capped at the backend's 64000-output-token limit (over-cap requests 400'd with `Request contains an invalid argument`); `modelEnum` is now optional on `AntigravityModelWireProfile` since the Claude wire ids are accepted without a captured `labels.model_enum`. ([#3067](https://github.com/can1357/oh-my-pi/issues/3067))
9
+ - Fixed Claude 4.6 routing on the `google-antigravity` (and `google-gemini-cli`) Cloud Code Assist providers, whose backend exposes the models asymmetrically: `claude-sonnet-4-6` has no `-thinking` twin and `claude-opus-4-6` has only the `-thinking` twin. The shared `thinkingPair` family was routing thinking efforts on `claude-sonnet-4-6` to a non-existent `claude-sonnet-4-6-thinking` wire id (404 `Requested entity was not found`); replaced both 4.6 entries with bespoke single-wire families that declare the dead ids as `retiredMembers` so `reconcileRetiredRouting` re-points stale bundled-catalog and SQLite-cache rows away from the 404 wire id. Refreshed the bundled `models.json` Sonnet 4.6 entry whose stored `effortRouting` still targeted the dead `-thinking` id. Added `claude-sonnet-4-6` and `claude-opus-4-6-thinking` entries to `ANTIGRAVITY_MODEL_WIRE_PROFILES` capped at the backend's 64000-output-token limit (over-cap requests 400'd with `Request contains an invalid argument`); `modelEnum` is now optional on `AntigravityModelWireProfile` since the Claude wire ids are accepted without a captured `labels.model_enum`. ([#3067](https://github.com/can1357/oh-my-pi/issues/3067))
10
10
 
11
11
  ## [16.1.3] - 2026-06-19
12
12
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@oh-my-pi/pi-catalog",
4
- "version": "16.1.4",
4
+ "version": "16.1.5",
5
5
  "description": "Model catalog for omp: bundled model database, provider discovery descriptors, model identity, classification, and equivalence",
6
6
  "homepage": "https://omp.sh",
7
7
  "author": "Can Boluk",
@@ -34,12 +34,12 @@
34
34
  },
35
35
  "dependencies": {
36
36
  "@bufbuild/protobuf": "^2.12.0",
37
- "@oh-my-pi/pi-utils": "16.1.4",
37
+ "@oh-my-pi/pi-utils": "16.1.5",
38
38
  "arktype": "^2.2.0",
39
39
  "zod": "^4"
40
40
  },
41
41
  "devDependencies": {
42
- "@oh-my-pi/pi-ai": "16.1.4",
42
+ "@oh-my-pi/pi-ai": "16.1.5",
43
43
  "@types/bun": "^1.3.14"
44
44
  },
45
45
  "engines": {
package/src/models.json CHANGED
@@ -17862,10 +17862,10 @@
17862
17862
  ],
17863
17863
  "effortRouting": {
17864
17864
  "off": "claude-sonnet-4-6",
17865
- "minimal": "claude-sonnet-4-6-thinking",
17866
- "low": "claude-sonnet-4-6-thinking",
17867
- "medium": "claude-sonnet-4-6-thinking",
17868
- "high": "claude-sonnet-4-6-thinking"
17865
+ "minimal": "claude-sonnet-4-6",
17866
+ "low": "claude-sonnet-4-6",
17867
+ "medium": "claude-sonnet-4-6",
17868
+ "high": "claude-sonnet-4-6"
17869
17869
  }
17870
17870
  }
17871
17871
  },
@@ -225,11 +225,15 @@ const SHARED_CCA_FAMILIES: readonly EffortVariantFamily[] = [
225
225
  // `claude-opus-4-6-thinking` wire id (no bare twin). Per-effort thinking is
226
226
  // carried in the request body via `thinkingBudget`, so both ids accept on/off
227
227
  // requests. Listing both candidates in `members` (priority order) keeps the
228
- // collapse correct if the backend mix ever rebalances.
228
+ // collapse correct if the backend mix ever rebalances; `retiredMembers`
229
+ // re-points stale collapsed snapshots (bundled catalog rows, cache rows
230
+ // written by prior generations) away from the dead wire id via
231
+ // `reconcileRetiredRouting`.
229
232
  {
230
233
  id: "claude-sonnet-4-6",
231
234
  name: "Claude Sonnet 4.6",
232
235
  members: ["claude-sonnet-4-6", "claude-sonnet-4-6-thinking"],
236
+ retiredMembers: ["claude-sonnet-4-6-thinking"],
233
237
  routing: {},
234
238
  thinking: { mode: "budget", efforts: [Effort.Minimal, Effort.Low, Effort.Medium, Effort.High] },
235
239
  },
@@ -237,6 +241,7 @@ const SHARED_CCA_FAMILIES: readonly EffortVariantFamily[] = [
237
241
  id: "claude-opus-4-6",
238
242
  name: "Claude Opus 4.6",
239
243
  members: ["claude-opus-4-6-thinking", "claude-opus-4-6"],
244
+ retiredMembers: ["claude-opus-4-6"],
240
245
  routing: {},
241
246
  thinking: { mode: "budget", efforts: [Effort.Minimal, Effort.Low, Effort.Medium, Effort.High] },
242
247
  },