@crossworks/client-types 0.232.211 → 0.232.214
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 +1 -1
- package/src/model-choices.ts +13 -6
package/package.json
CHANGED
package/src/model-choices.ts
CHANGED
|
@@ -35,13 +35,20 @@ export type ModelChoice = {
|
|
|
35
35
|
* azure-capable picks carry policy the curated template can't express. The
|
|
36
36
|
* exported list below extends this with the shipped `agents` pool. */
|
|
37
37
|
const BASE_ASSISTANT_CHOICES: readonly ModelChoice[] = [
|
|
38
|
+
{
|
|
39
|
+
id: '~x-ai/grok-latest',
|
|
40
|
+
name: 'Grok (latest)',
|
|
41
|
+
blurb:
|
|
42
|
+
'The shipped default — an auto-updating alias, so a brain installed today and one installed next year both get xAI’s current flagship. Frontier-class reasoning and tool use at well under Sonnet money.',
|
|
43
|
+
price: '$1.60 · $4.80 /M',
|
|
44
|
+
recommended: true,
|
|
45
|
+
},
|
|
38
46
|
{
|
|
39
47
|
id: 'anthropic/claude-sonnet-5',
|
|
40
48
|
name: 'Claude Sonnet 5',
|
|
41
49
|
blurb:
|
|
42
|
-
'
|
|
50
|
+
'Anthropic’s newest Sonnet: superb reasoning and tool use, and 1M context — double Grok’s — if you routinely hand the assistant very large documents.',
|
|
43
51
|
price: '$2 · $10 /M',
|
|
44
|
-
recommended: true,
|
|
45
52
|
},
|
|
46
53
|
{
|
|
47
54
|
id: 'anthropic/claude-opus-4.8',
|
|
@@ -62,7 +69,7 @@ const BASE_ASSISTANT_CHOICES: readonly ModelChoice[] = [
|
|
|
62
69
|
id: 'x-ai/grok-4.20',
|
|
63
70
|
name: 'Grok 4.20',
|
|
64
71
|
blurb:
|
|
65
|
-
'
|
|
72
|
+
'A pinned Grok generation — the value pick if you want a fixed model that never moves under you, rather than the tracking alias above.',
|
|
66
73
|
price: '$1.25 · $2.50 /M',
|
|
67
74
|
},
|
|
68
75
|
];
|
|
@@ -72,11 +79,11 @@ const BASE_ASSISTANT_CHOICES: readonly ModelChoice[] = [
|
|
|
72
79
|
* process EVERYTHING the brain ingests, so price and speed dominate. */
|
|
73
80
|
const BASE_WORKER_CHOICES: readonly ModelChoice[] = [
|
|
74
81
|
{
|
|
75
|
-
id: 'google/gemini-3.
|
|
76
|
-
name: 'Gemini 3.
|
|
82
|
+
id: 'google/gemini-3.5-flash-lite',
|
|
83
|
+
name: 'Gemini 3.5 Flash Lite',
|
|
77
84
|
blurb:
|
|
78
85
|
'The shipped default — very fast, very cheap, 1M-token context. Ideal for the always-on indexing that reads everything you add.',
|
|
79
|
-
price: '$0.
|
|
86
|
+
price: '$0.30 · $2.50 /M',
|
|
80
87
|
recommended: true,
|
|
81
88
|
},
|
|
82
89
|
{
|