Skip to content

Commit e810c04

Browse files
committed
feat: add gpt-120b and free aliases for nvidia model
1 parent c6694b5 commit e810c04

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@blockrun/clawrouter",
3-
"version": "0.5.1",
3+
"version": "0.5.2",
44
"description": "Smart LLM router — save 78% on inference costs. 30+ models, one wallet, x402 micropayments.",
55
"type": "module",
66
"main": "dist/index.js",

src/models.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,10 @@ export const MODEL_ALIASES: Record<string, string> = {
4444
"grok-fast": "xai/grok-4-fast-reasoning",
4545
"grok-code": "xai/grok-code-fast-1",
4646

47-
// NVIDIA
47+
// NVIDIA (free)
4848
nvidia: "nvidia/gpt-oss-120b",
49+
"gpt-120b": "nvidia/gpt-oss-120b",
50+
free: "nvidia/gpt-oss-120b",
4951
};
5052

5153
/**

0 commit comments

Comments
 (0)