command-code 1.30.1 → 1.31.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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# command-code
|
|
2
2
|
|
|
3
|
+
## 1.31.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- feat: add Ox Alpha, a free 1M-context reasoning model, on every plan
|
|
8
|
+
- feat: add Ox Alpha, a free 1M-context reasoning model, on every plan (#3951)
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- fix: give Ox Alpha its full tool set instead of deferred tools
|
|
13
|
+
|
|
3
14
|
## 1.30.1
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
|
@@ -16,7 +27,7 @@
|
|
|
16
27
|
|
|
17
28
|
## 1.29.0
|
|
18
29
|
|
|
19
|
-
- feat: improve traffic routing
|
|
30
|
+
- feat: improve model traffic routing with providers
|
|
20
31
|
|
|
21
32
|
## 1.28.4
|
|
22
33
|
|
|
@@ -39,6 +39,11 @@ The model catalog — every id `/model`, `--model`, `model:effort` shorthand, an
|
|
|
39
39
|
| `thinkingmachines/inkling` | Inkling | 256K | — | $1/$4.05 · cache $0.17 | Go and above | multimodal MoE reasoning |
|
|
40
40
|
| `thinkingmachines/inkling-small` | Inkling Small | 1M | — | $0.5/$1.2 · cache $0.1 | Go and above | lightweight MoE reasoning at lower cost and latency |
|
|
41
41
|
| `poolside/laguna-s-2.1-free` | Laguna S 2.1 | 256K | — | $0/$0 · cache $0 | Go and above | open-weight agentic coding and long-horizon work |
|
|
42
|
+
## Stealth
|
|
43
|
+
|
|
44
|
+
| Id (use EXACTLY this) | Name | Context | Efforts | $/1M in/out · cache read | Min plan | Best for |
|
|
45
|
+
|---|---|---|---|---|---|---|
|
|
46
|
+
| `stealth/ox-alpha` | Ox Alpha | 1.05M | — | $0/$0 · cache $0 | Go and above | long-horizon coding, agentic work & visual context |
|
|
42
47
|
## Anthropic
|
|
43
48
|
|
|
44
49
|
| Id (use EXACTLY this) | Name | Context | Efforts | $/1M in/out · cache read | Min plan | Best for |
|
|
@@ -307,6 +307,7 @@ Valid model ids (the /model catalog — use these EXACT ids):
|
|
|
307
307
|
- nvidia/nemotron-3-ultra-550b-a55b
|
|
308
308
|
- poolside/laguna-s-2.1-free
|
|
309
309
|
- inclusionai/ling-3.0-flash-free
|
|
310
|
+
- stealth/ox-alpha
|
|
310
311
|
A BYO-provider id (from a configured custom provider) also works and is passed through as-is.
|
|
311
312
|
|
|
312
313
|
WHEN THE USER ASKS YOU TO CREATE AN AGENT (e.g. "make a changelog agent with a cheap model"):
|