command-code 1.30.1 → 1.32.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,21 @@
|
|
|
1
1
|
# command-code
|
|
2
2
|
|
|
3
|
+
## 1.32.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- feat: add DeepSeek V4 Flash Vision (exp), a 1M-context vision reasoning model
|
|
8
|
+
|
|
9
|
+
## 1.31.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- feat: add Ox Alpha, a free 1M-context reasoning model, on every plan
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- fix: give Ox Alpha its full tool set instead of deferred tools
|
|
18
|
+
|
|
3
19
|
## 1.30.1
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
|
@@ -16,7 +32,7 @@
|
|
|
16
32
|
|
|
17
33
|
## 1.29.0
|
|
18
34
|
|
|
19
|
-
- feat: improve traffic routing
|
|
35
|
+
- feat: improve model traffic routing with providers
|
|
20
36
|
|
|
21
37
|
## 1.28.4
|
|
22
38
|
|
|
@@ -10,6 +10,7 @@ The model catalog — every id `/model`, `--model`, `model:effort` shorthand, an
|
|
|
10
10
|
|---|---|---|---|---|---|---|
|
|
11
11
|
| `deepseek/deepseek-v4-pro` | DeepSeek V4 Pro (latest) | 1M | high, max | $0.66/$1.98 · cache $0.022 | Go and above | hybrid-attention long-context reasoning |
|
|
12
12
|
| `deepseek/deepseek-v4-flash` | DeepSeek V4 Flash (latest) | 1M | high, max | $0.22/$0.66 · cache $0.007 | Go and above | fast hybrid-attention reasoning |
|
|
13
|
+
| `deepseek/deepseek-v4-flash-vision-exp` | DeepSeek V4 Flash Vision (exp) | 1M | high, max | $0.22/$0.66 · cache $0.01 | Go and above | fast hybrid-attention reasoning with vision |
|
|
13
14
|
| `moonshotai/Kimi-K3` | Kimi K3 | 1M | — | $3/$15 · cache $0.3 | Go and above | long-horizon coding & knowledge work with 1M context |
|
|
14
15
|
| `moonshotai/Kimi-K2.7-Code` | Kimi K2.7 Code | 256K | — | $0.95/$4 · cache $0.19 | Go and above | improved long-horizon coding with vision |
|
|
15
16
|
| `moonshotai/Kimi-K2.7-Code-Highspeed` | Kimi K2.7 Code HighSpeed | 262K | — | $1.9/$8 · cache $0.38 | Go and above | high-speed long-horizon coding with vision |
|
|
@@ -39,6 +40,11 @@ The model catalog — every id `/model`, `--model`, `model:effort` shorthand, an
|
|
|
39
40
|
| `thinkingmachines/inkling` | Inkling | 256K | — | $1/$4.05 · cache $0.17 | Go and above | multimodal MoE reasoning |
|
|
40
41
|
| `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
42
|
| `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 |
|
|
43
|
+
## Stealth
|
|
44
|
+
|
|
45
|
+
| Id (use EXACTLY this) | Name | Context | Efforts | $/1M in/out · cache read | Min plan | Best for |
|
|
46
|
+
|---|---|---|---|---|---|---|
|
|
47
|
+
| `stealth/ox-alpha` | Ox Alpha | 1.05M | — | $0/$0 · cache $0 | Go and above | long-horizon coding, agentic work & visual context |
|
|
42
48
|
## Anthropic
|
|
43
49
|
|
|
44
50
|
| Id (use EXACTLY this) | Name | Context | Efforts | $/1M in/out · cache read | Min plan | Best for |
|
|
@@ -268,6 +268,7 @@ Valid model ids (the /model catalog — use these EXACT ids):
|
|
|
268
268
|
- thinkingmachines/inkling-small
|
|
269
269
|
- deepseek/deepseek-v4-pro
|
|
270
270
|
- deepseek/deepseek-v4-flash
|
|
271
|
+
- deepseek/deepseek-v4-flash-vision-exp
|
|
271
272
|
- moonshotai/Kimi-K2.7-Code
|
|
272
273
|
- moonshotai/Kimi-K2.7-Code-Highspeed
|
|
273
274
|
- moonshotai/Kimi-K2.6
|
|
@@ -307,6 +308,7 @@ Valid model ids (the /model catalog — use these EXACT ids):
|
|
|
307
308
|
- nvidia/nemotron-3-ultra-550b-a55b
|
|
308
309
|
- poolside/laguna-s-2.1-free
|
|
309
310
|
- inclusionai/ling-3.0-flash-free
|
|
311
|
+
- stealth/ox-alpha
|
|
310
312
|
A BYO-provider id (from a configured custom provider) also works and is passed through as-is.
|
|
311
313
|
|
|
312
314
|
WHEN THE USER ASKS YOU TO CREATE AN AGENT (e.g. "make a changelog agent with a cheap model"):
|