@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/cli.js +23 -9
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +24 -10
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -1747,8 +1747,8 @@ var DEFAULT_ROUTING_CONFIG = {
|
|
|
1747
1747
|
]
|
|
1748
1748
|
},
|
|
1749
1749
|
MEDIUM: {
|
|
1750
|
-
primary: "openai/gpt-5.
|
|
1751
|
-
// $
|
|
1750
|
+
primary: "openai/gpt-5.3-codex",
|
|
1751
|
+
// $1.75/$14 - 400K context, 128K output, replaces 5.2
|
|
1752
1752
|
fallback: [
|
|
1753
1753
|
"moonshot/kimi-k2.5",
|
|
1754
1754
|
"google/gemini-2.5-flash",
|
|
@@ -1764,7 +1764,7 @@ var DEFAULT_ROUTING_CONFIG = {
|
|
|
1764
1764
|
fallback: [
|
|
1765
1765
|
"openai/gpt-5.4",
|
|
1766
1766
|
// Newest flagship
|
|
1767
|
-
"openai/gpt-5.
|
|
1767
|
+
"openai/gpt-5.3-codex",
|
|
1768
1768
|
"anthropic/claude-opus-4.6",
|
|
1769
1769
|
"anthropic/claude-sonnet-4.6",
|
|
1770
1770
|
"google/gemini-3.1-pro",
|
|
@@ -1875,7 +1875,7 @@ var MODEL_ALIASES = {
|
|
|
1875
1875
|
gpt5: "openai/gpt-5.4",
|
|
1876
1876
|
"gpt-5.4": "openai/gpt-5.4",
|
|
1877
1877
|
"gpt-5.4-pro": "openai/gpt-5.4-pro",
|
|
1878
|
-
codex: "openai/gpt-5.
|
|
1878
|
+
codex: "openai/gpt-5.3-codex",
|
|
1879
1879
|
mini: "openai/gpt-4o-mini",
|
|
1880
1880
|
o1: "openai/o1",
|
|
1881
1881
|
o3: "openai/o3",
|
|
@@ -2031,15 +2031,29 @@ var BLOCKRUN_MODELS = [
|
|
|
2031
2031
|
reasoning: true,
|
|
2032
2032
|
toolCalling: true
|
|
2033
2033
|
},
|
|
2034
|
-
// OpenAI
|
|
2034
|
+
// OpenAI GPT-5.3 Family
|
|
2035
2035
|
{
|
|
2036
|
-
id: "openai/gpt-5.
|
|
2037
|
-
name: "GPT-5.
|
|
2038
|
-
version: "5.
|
|
2036
|
+
id: "openai/gpt-5.3",
|
|
2037
|
+
name: "GPT-5.3",
|
|
2038
|
+
version: "5.3",
|
|
2039
2039
|
inputPrice: 1.75,
|
|
2040
2040
|
outputPrice: 14,
|
|
2041
2041
|
contextWindow: 128e3,
|
|
2042
|
-
maxOutput:
|
|
2042
|
+
maxOutput: 16e3,
|
|
2043
|
+
reasoning: true,
|
|
2044
|
+
vision: true,
|
|
2045
|
+
agentic: true,
|
|
2046
|
+
toolCalling: true
|
|
2047
|
+
},
|
|
2048
|
+
// OpenAI Codex Family
|
|
2049
|
+
{
|
|
2050
|
+
id: "openai/gpt-5.3-codex",
|
|
2051
|
+
name: "GPT-5.3 Codex",
|
|
2052
|
+
version: "5.3",
|
|
2053
|
+
inputPrice: 1.75,
|
|
2054
|
+
outputPrice: 14,
|
|
2055
|
+
contextWindow: 4e5,
|
|
2056
|
+
maxOutput: 128e3,
|
|
2043
2057
|
agentic: true,
|
|
2044
2058
|
toolCalling: true
|
|
2045
2059
|
},
|