@blockrun/clawrouter 0.12.77 → 0.12.79

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blockrun/clawrouter",
3
- "version": "0.12.77",
3
+ "version": "0.12.79",
4
4
  "description": "Smart LLM router — save 85% on inference costs. 55+ models (11 free), one wallet, x402 micropayments.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -320,7 +320,7 @@ try {
320
320
 
321
321
  // Curated models for the /model picker
322
322
  const TOP_MODELS = [
323
- 'auto', 'free', 'eco', 'premium',
323
+ 'auto', 'eco', 'premium',
324
324
  'anthropic/claude-sonnet-4.6', 'anthropic/claude-opus-4.6', 'anthropic/claude-haiku-4.5',
325
325
  'openai/gpt-5.4', 'openai/gpt-5.4-pro', 'openai/gpt-5.3', 'openai/gpt-5.3-codex',
326
326
  'openai/gpt-5-mini', 'openai/gpt-5-nano', 'openai/gpt-5.4-nano', 'openai/gpt-4o', 'openai/gpt-4o-mini', 'openai/o3', 'openai/o4-mini',
@@ -329,7 +329,10 @@ try {
329
329
  'deepseek/deepseek-chat', 'deepseek/deepseek-reasoner', 'moonshot/kimi-k2.5',
330
330
  'xai/grok-3', 'xai/grok-4-0709', 'xai/grok-4-1-fast-reasoning',
331
331
  'minimax/minimax-m2.7', 'minimax/minimax-m2.5',
332
- 'nvidia/gpt-oss-120b',
332
+ 'nvidia/gpt-oss-120b', 'nvidia/gpt-oss-20b',
333
+ 'nvidia/nemotron-ultra-253b', 'nvidia/deepseek-v3.2', 'nvidia/mistral-large-3-675b',
334
+ 'nvidia/qwen3-coder-480b', 'nvidia/devstral-2-123b', 'nvidia/llama-4-maverick',
335
+ 'nvidia/nemotron-3-super-120b', 'nvidia/nemotron-super-49b', 'nvidia/glm-4.7',
333
336
  'zai/glm-5', 'zai/glm-5-turbo'
334
337
  ];
335
338
 
@@ -446,12 +449,19 @@ echo ""
446
449
  echo "Run: openclaw gateway restart"
447
450
  echo ""
448
451
  echo "Model aliases available:"
449
- echo " /model sonnet → claude-sonnet-4"
450
- echo " /model opus → claude-opus-4"
452
+ echo " /model sonnet → claude-sonnet-4.6"
453
+ echo " /model opus → claude-opus-4.6"
451
454
  echo " /model codex → openai/gpt-5.3-codex"
452
455
  echo " /model deepseek → deepseek/deepseek-chat"
453
- echo " /model minimax minimax/minimax-m2.5"
454
- echo " /model free → gpt-oss-120b (FREE)"
456
+ echo " /model free nemotron-ultra-253b (strongest free)"
457
+ echo ""
458
+ echo "Free models (no wallet needed):"
459
+ echo " /model nemotron → nemotron-ultra-253b (strongest free)"
460
+ echo " /model deepseek-free → deepseek-v3.2"
461
+ echo " /model mistral-free → mistral-large-675b"
462
+ echo " /model devstral → devstral-2-123b (coding)"
463
+ echo " /model qwen-coder → qwen3-coder-480b (coding)"
464
+ echo " /model maverick → llama-4-maverick"
455
465
  echo ""
456
466
  echo "Image generation:"
457
467
  echo " /imagegen <prompt> # default: nano-banana"
package/scripts/update.sh CHANGED
@@ -270,7 +270,7 @@ try {
270
270
 
271
271
  // Curated models for the /model picker
272
272
  const TOP_MODELS = [
273
- 'auto', 'free', 'eco', 'premium',
273
+ 'auto', 'eco', 'premium',
274
274
  'anthropic/claude-sonnet-4.6', 'anthropic/claude-opus-4.6', 'anthropic/claude-haiku-4.5',
275
275
  'openai/gpt-5.4', 'openai/gpt-5.4-pro', 'openai/gpt-5.3', 'openai/gpt-5.3-codex',
276
276
  'openai/gpt-5-mini', 'openai/gpt-5-nano', 'openai/gpt-5.4-nano', 'openai/gpt-4o', 'openai/gpt-4o-mini', 'openai/o3', 'openai/o4-mini',
@@ -279,7 +279,10 @@ try {
279
279
  'deepseek/deepseek-chat', 'deepseek/deepseek-reasoner', 'moonshot/kimi-k2.5',
280
280
  'xai/grok-3', 'xai/grok-4-0709', 'xai/grok-4-1-fast-reasoning',
281
281
  'minimax/minimax-m2.7', 'minimax/minimax-m2.5',
282
- 'nvidia/gpt-oss-120b',
282
+ 'nvidia/gpt-oss-120b', 'nvidia/gpt-oss-20b',
283
+ 'nvidia/nemotron-ultra-253b', 'nvidia/deepseek-v3.2', 'nvidia/mistral-large-3-675b',
284
+ 'nvidia/qwen3-coder-480b', 'nvidia/devstral-2-123b', 'nvidia/llama-4-maverick',
285
+ 'nvidia/nemotron-3-super-120b', 'nvidia/nemotron-super-49b', 'nvidia/glm-4.7',
283
286
  'zai/glm-5', 'zai/glm-5-turbo'
284
287
  ];
285
288