@rulvar/openai 1.251.0 → 1.253.0

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.
Files changed (2) hide show
  1. package/dist/index.js +16 -14
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -34,17 +34,19 @@ const GPT_56_TIERS = [{
34
34
  * GPT-5.6 Sol, Terra, and Luna are three sibling models, not snapshots
35
35
  * of one model (developers.openai.com/api/docs/models/gpt-5.6-sol,
36
36
  * .../gpt-5.6-terra, .../gpt-5.6-luna; the weekly rates audit
37
- * re-verifies the three pages). The family rows carry ratesVerifiedAt
38
- * '2026-07-31' (RV814): on that date every row was re-verified against
39
- * its documented model page, picking up the provider's 2026-07-30
40
- * price cut on Terra (0.8x across input, cached input, cache write,
41
- * and output) and Luna (0.2x across the same four) that the
42
- * thirteenth-experiment live audit caught as drift (RV911). Sol's
43
- * row was re-verified '2026-08-23': the fresh-classification dispatch
44
- * of the plan-44 release caught the provider's Sol price cut on the
45
- * documented page (input 5 to 4, output 30 to 20, cache read 0.5 to
46
- * 0.4, cache write 6.25 to 5), and the correction ships as this
47
- * release's own changeset per the audit's doctrine. Sol's PREVIOUS
37
+ * re-verifies the three pages and, since RV4918, the age of the
38
+ * stamps). The family rows carry ratesVerifiedAt '2026-09-07' (RV814,
39
+ * RV4918): on that date every row was re read against its documented
40
+ * model page with the audit's own extractor and comparator, and no
41
+ * number moved. The 2026-07-31 verification had picked up the
42
+ * provider's 2026-07-30 price cut on Terra (0.8x across input, cached
43
+ * input, cache write, and output) and Luna (0.2x across the same four)
44
+ * that the thirteenth-experiment live audit caught as drift (RV911).
45
+ * Sol's row was re-verified '2026-08-23': the fresh-classification
46
+ * dispatch of the plan-44 release caught the provider's Sol price cut
47
+ * on the documented page (input 5 to 4, output 30 to 20, cache read
48
+ * 0.5 to 0.4, cache write 6.25 to 5), and the correction shipped as
49
+ * that release's own changeset per the audit's doctrine. Sol's PREVIOUS
48
50
  * rates additionally remain billing-CONFIRMED by the
49
51
  * 2026-07-30 twelfth-experiment statement reconciliation, which
50
52
  * matched all eight per-model per-component dashboard categories to
@@ -67,7 +69,7 @@ const GPT_56_SOL = responses(105e4, 128e3, {
67
69
  cacheReadUsdPerMTok: .4,
68
70
  cacheWriteUsdPerMTok: 5,
69
71
  tiers: GPT_56_TIERS,
70
- ratesVerifiedAt: "2026-08-23"
72
+ ratesVerifiedAt: "2026-09-07"
71
73
  }, { wireMaxEffort: true });
72
74
  /** Static seed table of the current model set. */
73
75
  const OPENAI_MODELS = {
@@ -78,7 +80,7 @@ const OPENAI_MODELS = {
78
80
  cacheReadUsdPerMTok: .2,
79
81
  cacheWriteUsdPerMTok: 2.5,
80
82
  tiers: GPT_56_TIERS,
81
- ratesVerifiedAt: "2026-07-31"
83
+ ratesVerifiedAt: "2026-09-07"
82
84
  }, { wireMaxEffort: true }),
83
85
  "gpt-5.6-luna": responses(105e4, 128e3, {
84
86
  inputUsdPerMTok: .2,
@@ -86,7 +88,7 @@ const OPENAI_MODELS = {
86
88
  cacheReadUsdPerMTok: .02,
87
89
  cacheWriteUsdPerMTok: .25,
88
90
  tiers: GPT_56_TIERS,
89
- ratesVerifiedAt: "2026-07-31"
91
+ ratesVerifiedAt: "2026-09-07"
90
92
  }, { wireMaxEffort: true }),
91
93
  "gpt-5.6": GPT_56_SOL,
92
94
  "gpt-5.5": responses(4e5, 128e3, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rulvar/openai",
3
- "version": "1.251.0",
3
+ "version": "1.253.0",
4
4
  "description": "Rulvar first-class provider adapter for the OpenAI Responses API, plus the openaiCompatible factory.",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
@@ -23,13 +23,13 @@
23
23
  },
24
24
  "dependencies": {
25
25
  "openai": "^6.49.0",
26
- "@rulvar/core": "1.251.0"
26
+ "@rulvar/core": "1.253.0"
27
27
  },
28
28
  "devDependencies": {
29
29
  "@types/node": "^22.20.1",
30
30
  "tsdown": "^0.22.14",
31
31
  "typescript": "~6.0.3",
32
- "@rulvar/testing": "1.251.0"
32
+ "@rulvar/testing": "1.253.0"
33
33
  },
34
34
  "repository": {
35
35
  "type": "git",