@oh-my-pi/pi-catalog 17.0.5 → 17.0.6

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
@@ -2,6 +2,16 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [17.0.6] - 2026-07-20
6
+
7
+ ### Added
8
+
9
+ - Added static fallback seed for Devin's `swe-1-7` model so it is bundled even when catalog generation runs without a Devin session token.
10
+
11
+ ### Fixed
12
+
13
+ - Collapsed Devin's six GLM-5.2 variants into two logical entries (`glm-5-2` for 200K free, `glm-5-2-1m` for 1M paid). The 200K entry routes every thinking effort to the free `glm-5-2` wire UID — never to the quota-gated `glm-5-2-max` or `glm-5-2-none` — so GLM-5.2 works even when the weekly usage quota is exhausted.
14
+
5
15
  ## [17.0.5] - 2026-07-18
6
16
 
7
17
  ### Added
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@oh-my-pi/pi-catalog",
4
- "version": "17.0.5",
4
+ "version": "17.0.6",
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.1",
37
- "@oh-my-pi/pi-utils": "17.0.5",
37
+ "@oh-my-pi/pi-utils": "17.0.6",
38
38
  "arktype": "2.2.3",
39
39
  "zod": "^4"
40
40
  },
41
41
  "devDependencies": {
42
- "@oh-my-pi/pi-ai": "17.0.5",
42
+ "@oh-my-pi/pi-ai": "17.0.6",
43
43
  "@types/bun": "^1.3.14"
44
44
  },
45
45
  "engines": {
package/src/models.json CHANGED
@@ -16868,7 +16868,7 @@
16868
16868
  },
16869
16869
  "glm-5-2": {
16870
16870
  "id": "glm-5-2",
16871
- "name": "GLM-5.2 High",
16871
+ "name": "GLM-5.2",
16872
16872
  "api": "devin-agent",
16873
16873
  "provider": "devin",
16874
16874
  "baseUrl": "https://server.codeium.com",
@@ -16884,51 +16884,23 @@
16884
16884
  "cacheWrite": 0
16885
16885
  },
16886
16886
  "contextWindow": 200000,
16887
- "maxTokens": 64000
16887
+ "maxTokens": 64000,
16888
+ "thinking": {
16889
+ "mode": "effort",
16890
+ "efforts": [
16891
+ "high",
16892
+ "xhigh"
16893
+ ],
16894
+ "requiresEffort": true,
16895
+ "effortRouting": {
16896
+ "high": "glm-5-2",
16897
+ "xhigh": "glm-5-2"
16898
+ }
16899
+ }
16888
16900
  },
16889
16901
  "glm-5-2-1m": {
16890
16902
  "id": "glm-5-2-1m",
16891
- "name": "GLM-5.2 High 1M",
16892
- "api": "devin-agent",
16893
- "provider": "devin",
16894
- "baseUrl": "https://server.codeium.com",
16895
- "reasoning": true,
16896
- "input": [
16897
- "text"
16898
- ],
16899
- "supportsTools": true,
16900
- "cost": {
16901
- "input": 0,
16902
- "output": 0,
16903
- "cacheRead": 0,
16904
- "cacheWrite": 0
16905
- },
16906
- "contextWindow": 1000000,
16907
- "maxTokens": 64000
16908
- },
16909
- "glm-5-2-max": {
16910
- "id": "glm-5-2-max",
16911
- "name": "GLM-5.2 Max",
16912
- "api": "devin-agent",
16913
- "provider": "devin",
16914
- "baseUrl": "https://server.codeium.com",
16915
- "reasoning": true,
16916
- "input": [
16917
- "text"
16918
- ],
16919
- "supportsTools": true,
16920
- "cost": {
16921
- "input": 0,
16922
- "output": 0,
16923
- "cacheRead": 0,
16924
- "cacheWrite": 0
16925
- },
16926
- "contextWindow": 200000,
16927
- "maxTokens": 64000
16928
- },
16929
- "glm-5-2-max-1m": {
16930
- "id": "glm-5-2-max-1m",
16931
- "name": "GLM-5.2 Max 1M",
16903
+ "name": "GLM-5.2 1M",
16932
16904
  "api": "devin-agent",
16933
16905
  "provider": "devin",
16934
16906
  "baseUrl": "https://server.codeium.com",
@@ -16944,47 +16916,20 @@
16944
16916
  "cacheWrite": 0
16945
16917
  },
16946
16918
  "contextWindow": 1000000,
16947
- "maxTokens": 64000
16948
- },
16949
- "glm-5-2-none": {
16950
- "id": "glm-5-2-none",
16951
- "name": "GLM-5.2 No Thinking",
16952
- "api": "devin-agent",
16953
- "provider": "devin",
16954
- "baseUrl": "https://server.codeium.com",
16955
- "reasoning": false,
16956
- "input": [
16957
- "text"
16958
- ],
16959
- "supportsTools": true,
16960
- "cost": {
16961
- "input": 0,
16962
- "output": 0,
16963
- "cacheRead": 0,
16964
- "cacheWrite": 0
16965
- },
16966
- "contextWindow": 200000,
16967
- "maxTokens": 64000
16968
- },
16969
- "glm-5-2-none-1m": {
16970
- "id": "glm-5-2-none-1m",
16971
- "name": "GLM-5.2 No Thinking 1M",
16972
- "api": "devin-agent",
16973
- "provider": "devin",
16974
- "baseUrl": "https://server.codeium.com",
16975
- "reasoning": false,
16976
- "input": [
16977
- "text"
16978
- ],
16979
- "supportsTools": true,
16980
- "cost": {
16981
- "input": 0,
16982
- "output": 0,
16983
- "cacheRead": 0,
16984
- "cacheWrite": 0
16919
+ "maxTokens": 64000,
16920
+ "thinking": {
16921
+ "mode": "effort",
16922
+ "efforts": [
16923
+ "high",
16924
+ "xhigh"
16925
+ ],
16926
+ "effortRouting": {
16927
+ "off": "glm-5-2-none-1m",
16928
+ "high": "glm-5-2-1m",
16929
+ "xhigh": "glm-5-2-max-1m"
16930
+ }
16985
16931
  },
16986
- "contextWindow": 1000000,
16987
- "maxTokens": 64000
16932
+ "requestModelId": "glm-5-2-none-1m"
16988
16933
  },
16989
16934
  "gpt-5-2": {
16990
16935
  "id": "gpt-5-2",
@@ -17798,7 +17743,7 @@
17798
17743
  },
17799
17744
  "swe-1-7": {
17800
17745
  "id": "swe-1-7",
17801
- "name": "SWE-1.7",
17746
+ "name": "SWE-1.7 Max",
17802
17747
  "api": "devin-agent",
17803
17748
  "provider": "devin",
17804
17749
  "baseUrl": "https://server.codeium.com",
@@ -95533,4 +95478,4 @@
95533
95478
  }
95534
95479
  }
95535
95480
  }
95536
- }
95481
+ }
@@ -532,6 +532,39 @@ export const DEVIN_VARIANT_COLLAPSE_TABLE: VariantCollapseTable = {
532
532
  },
533
533
  [Effort.Minimal, Effort.Low, Effort.Medium, Effort.High],
534
534
  ),
535
+ // GLM-5.2 200K — only the base wire UID `glm-5-2` is free on Devin's
536
+ // Coding Plan (verified via streamDevin: `glm-5-2-none` and `glm-5-2-max`
537
+ // both return "weekly usage quota exhausted" while `glm-5-2` streams
538
+ // successfully). Route every effort to `glm-5-2` so the collapsed entry
539
+ // is always free; include the paid 200K variants as members so they are
540
+ // hidden from the model list. The 1M-context variants stay as separate
541
+ // paid entries (collapsed below).
542
+ {
543
+ id: "glm-5-2",
544
+ name: "GLM-5.2",
545
+ members: ["glm-5-2", "glm-5-2-none", "glm-5-2-max"],
546
+ routing: {
547
+ [Effort.High]: "glm-5-2",
548
+ [Effort.XHigh]: "glm-5-2",
549
+ },
550
+ thinking: {
551
+ mode: "effort",
552
+ efforts: [Effort.High, Effort.XHigh],
553
+ requiresEffort: true,
554
+ },
555
+ },
556
+ // GLM-5.2 1M — paid variants that consume weekly quota. Collapse the
557
+ // three 1M-context variants into one entry with proper effort routing.
558
+ devinTierFamily(
559
+ "glm-5-2-1m",
560
+ "GLM-5.2 1M",
561
+ {
562
+ off: "glm-5-2-none-1m",
563
+ high: "glm-5-2-1m",
564
+ xhigh: "glm-5-2-max-1m",
565
+ },
566
+ [Effort.High, Effort.XHigh],
567
+ ),
535
568
  ],
536
569
  };
537
570