@rulvar/openai 1.252.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.
- package/dist/index.js +16 -14
- 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
|
|
38
|
-
*
|
|
39
|
-
*
|
|
40
|
-
*
|
|
41
|
-
*
|
|
42
|
-
*
|
|
43
|
-
*
|
|
44
|
-
*
|
|
45
|
-
*
|
|
46
|
-
*
|
|
47
|
-
*
|
|
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-
|
|
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
|
|
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
|
|
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.
|
|
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.
|
|
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.
|
|
32
|
+
"@rulvar/testing": "1.253.0"
|
|
33
33
|
},
|
|
34
34
|
"repository": {
|
|
35
35
|
"type": "git",
|