@blockrun/clawrouter 0.12.40 → 0.12.41

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.d.ts CHANGED
@@ -1379,7 +1379,7 @@ declare function buildPartnerTools(proxyBaseUrl: string): PartnerToolDefinition[
1379
1379
  * openclaw models set blockrun/auto
1380
1380
  *
1381
1381
  * # Or use any specific BlockRun model
1382
- * openclaw models set openai/gpt-5.2
1382
+ * openclaw models set openai/gpt-5.3
1383
1383
  */
1384
1384
 
1385
1385
  declare const plugin: OpenClawPluginDefinition;
package/dist/index.js CHANGED
@@ -990,7 +990,7 @@ var MODEL_ALIASES = {
990
990
  gpt5: "openai/gpt-5.4",
991
991
  "gpt-5.4": "openai/gpt-5.4",
992
992
  "gpt-5.4-pro": "openai/gpt-5.4-pro",
993
- codex: "openai/gpt-5.2-codex",
993
+ codex: "openai/gpt-5.3-codex",
994
994
  mini: "openai/gpt-4o-mini",
995
995
  o1: "openai/o1",
996
996
  o3: "openai/o3",
@@ -1146,15 +1146,29 @@ var BLOCKRUN_MODELS = [
1146
1146
  reasoning: true,
1147
1147
  toolCalling: true
1148
1148
  },
1149
- // OpenAI Codex Family
1149
+ // OpenAI GPT-5.3 Family
1150
1150
  {
1151
- id: "openai/gpt-5.2-codex",
1152
- name: "GPT-5.2 Codex",
1153
- version: "5.2",
1151
+ id: "openai/gpt-5.3",
1152
+ name: "GPT-5.3",
1153
+ version: "5.3",
1154
1154
  inputPrice: 1.75,
1155
1155
  outputPrice: 14,
1156
1156
  contextWindow: 128e3,
1157
- maxOutput: 32e3,
1157
+ maxOutput: 16e3,
1158
+ reasoning: true,
1159
+ vision: true,
1160
+ agentic: true,
1161
+ toolCalling: true
1162
+ },
1163
+ // OpenAI Codex Family
1164
+ {
1165
+ id: "openai/gpt-5.3-codex",
1166
+ name: "GPT-5.3 Codex",
1167
+ version: "5.3",
1168
+ inputPrice: 1.75,
1169
+ outputPrice: 14,
1170
+ contextWindow: 4e5,
1171
+ maxOutput: 128e3,
1158
1172
  agentic: true,
1159
1173
  toolCalling: true
1160
1174
  },
@@ -3244,8 +3258,8 @@ var DEFAULT_ROUTING_CONFIG = {
3244
3258
  ]
3245
3259
  },
3246
3260
  MEDIUM: {
3247
- primary: "openai/gpt-5.2-codex",
3248
- // $2.50/$10 - strong coding for medium tasks
3261
+ primary: "openai/gpt-5.3-codex",
3262
+ // $1.75/$14 - 400K context, 128K output, replaces 5.2
3249
3263
  fallback: [
3250
3264
  "moonshot/kimi-k2.5",
3251
3265
  "google/gemini-2.5-flash",
@@ -3261,7 +3275,7 @@ var DEFAULT_ROUTING_CONFIG = {
3261
3275
  fallback: [
3262
3276
  "openai/gpt-5.4",
3263
3277
  // Newest flagship
3264
- "openai/gpt-5.2-codex",
3278
+ "openai/gpt-5.3-codex",
3265
3279
  "anthropic/claude-opus-4.6",
3266
3280
  "anthropic/claude-sonnet-4.6",
3267
3281
  "google/gemini-3.1-pro",
@@ -8696,7 +8710,7 @@ function injectModelsConfig(logger) {
8696
8710
  "anthropic/claude-sonnet-4.6",
8697
8711
  "anthropic/claude-opus-4.6",
8698
8712
  "anthropic/claude-haiku-4.5",
8699
- "openai/gpt-5.2",
8713
+ "openai/gpt-5.3",
8700
8714
  "openai/gpt-4o",
8701
8715
  "openai/o3",
8702
8716
  "google/gemini-3.1-pro",