@evolvingmachines/sdk 0.0.55 → 0.0.56
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/README.md +3 -25
- package/bin/evolve.js +32 -0
- package/harness-capabilities.json +430 -0
- package/hosted-error-codes.json +120 -0
- package/index.cjs +1 -0
- package/index.d.ts +1 -0
- package/index.mjs +1 -0
- package/package.json +21 -107
- package/dist/index.cjs +0 -630
- package/dist/index.d.cts +0 -3257
- package/dist/index.d.ts +0 -3257
- package/dist/index.js +0 -630
package/README.md
CHANGED
|
@@ -1,25 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
<img src="https://raw.githubusercontent.com/evolving-machines-lab/evolve/main/logo/evolving-machines-ink.png" alt="Evolving Machines" width="380">
|
|
5
|
-
</p>
|
|
6
|
-
|
|
7
|
-
<br><br>
|
|
8
|
-
|
|
9
|
-
# Evolving Machines — Evolve SDK (TypeScript)
|
|
10
|
-
|
|
11
|
-
Evolve SDK lets you run and orchestrate terminal-based AI agents in secure sandboxes with built-in observability.
|
|
12
|
-
|
|
13
|
-
Check out the [official documentation](https://github.com/evolving-machines-lab/evolve/tree/main/docs) and [cookbooks](https://github.com/evolving-machines-lab/evolve/tree/main/cookbooks).
|
|
14
|
-
|
|
15
|
-
## Reporting Bugs
|
|
16
|
-
|
|
17
|
-
We welcome your feedback. File a [GitHub issue](https://github.com/evolving-machines-lab/evolve/issues) to report bugs or request features.
|
|
18
|
-
|
|
19
|
-
## Connect on Discord
|
|
20
|
-
|
|
21
|
-
Join the [Evolve SDK Developers Discord](https://discord.gg/Q36D8dGyNF) to connect with other developers using Evolve SDK. Get help, share feedback, and discuss your projects with the community.
|
|
22
|
-
|
|
23
|
-
## License
|
|
24
|
-
|
|
25
|
-
See [LICENSE](https://github.com/evolving-machines-lab/evolve/blob/main/LICENSE) for details.
|
|
1
|
+
# @evolvingmachines/sdk
|
|
2
|
+
This package was renamed to `@evolvingmachines/evolve`; this name re-exports it, at the same version, with the same `evolve` command.
|
|
3
|
+
Install `@evolvingmachines/evolve` instead: `npm install @evolvingmachines/evolve`.
|
package/bin/evolve.js
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
// The alias package's `evolve` command is the real package's CLI. The real
|
|
3
|
+
// package exports no CLI subpath, so the CLI file is found beside the real
|
|
4
|
+
// package's resolved entry: dist/index.cjs and dist/cli/index.js share dist/.
|
|
5
|
+
// The CLI runs in a child process because its own bin gate runs it only when
|
|
6
|
+
// it is the process entry; the child inherits stdio, so streams and exit codes
|
|
7
|
+
// pass through unchanged, and a signal to this process reaches the child.
|
|
8
|
+
import { spawn } from "node:child_process";
|
|
9
|
+
import { createRequire } from "node:module";
|
|
10
|
+
import { constants } from "node:os";
|
|
11
|
+
import { dirname, join } from "node:path";
|
|
12
|
+
|
|
13
|
+
const entry = createRequire(import.meta.url).resolve("@evolvingmachines/evolve");
|
|
14
|
+
const cli = join(dirname(entry), "cli", "index.js");
|
|
15
|
+
const forwarded = ["SIGINT", "SIGTERM", "SIGHUP"];
|
|
16
|
+
|
|
17
|
+
const child = spawn(process.execPath, [...process.execArgv, cli, ...process.argv.slice(2)], {
|
|
18
|
+
stdio: "inherit",
|
|
19
|
+
});
|
|
20
|
+
for (const signal of forwarded) {
|
|
21
|
+
process.on(signal, () => child.kill(signal));
|
|
22
|
+
}
|
|
23
|
+
child.on("exit", (code, signal) => {
|
|
24
|
+
if (signal) {
|
|
25
|
+
// Die by the same signal: drop the forwarders first, or the re-raised
|
|
26
|
+
// signal lands in them and this process ends with code 1 instead.
|
|
27
|
+
for (const s of forwarded) process.removeAllListeners(s);
|
|
28
|
+
process.kill(process.pid, signal);
|
|
29
|
+
process.exit(128 + constants.signals[signal]);
|
|
30
|
+
}
|
|
31
|
+
process.exit(code ?? 1);
|
|
32
|
+
});
|
|
@@ -0,0 +1,430 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$comment": "Per-harness models and reasoning efforts, checked in so two repos that share no test runner can be held to one table. The evolve SDK owns it: AGENT_REGISTRY in packages/sdk-ts/src/registry.ts is the only place models, efforts, or defaults may change, and scripts/generate-harness-capabilities.ts regenerates this file from it (npm run generate:capabilities; the build fails when it is stale). The hosted-evals dashboard consumes this file for its capability document and its parity test diffs the served document against it, the TypeScript SDK test regenerates these exact bytes from the registry, and the Python SDK test asserts its own Literals cover them. Changing a model or an effort therefore means: registry.ts, regenerate this file, and nothing else.",
|
|
3
|
+
"reasoningEfforts": [
|
|
4
|
+
"off",
|
|
5
|
+
"minimal",
|
|
6
|
+
"low",
|
|
7
|
+
"medium",
|
|
8
|
+
"high",
|
|
9
|
+
"xhigh",
|
|
10
|
+
"max",
|
|
11
|
+
"thinking"
|
|
12
|
+
],
|
|
13
|
+
"binaryEffortValues": [
|
|
14
|
+
"off",
|
|
15
|
+
"minimal",
|
|
16
|
+
"medium",
|
|
17
|
+
"thinking"
|
|
18
|
+
],
|
|
19
|
+
"defaultReasoningEffort": "medium",
|
|
20
|
+
"harnesses": {
|
|
21
|
+
"claude": {
|
|
22
|
+
"defaultModel": "opus",
|
|
23
|
+
"models": [
|
|
24
|
+
{
|
|
25
|
+
"alias": "fable",
|
|
26
|
+
"modelId": "claude-fable-5-1",
|
|
27
|
+
"description": "Highest capability, long-horizon agentic work"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"alias": "opus",
|
|
31
|
+
"modelId": "claude-opus-5",
|
|
32
|
+
"description": "Complex reasoning, R&D, architecting"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"alias": "sonnet",
|
|
36
|
+
"modelId": "claude-sonnet-5",
|
|
37
|
+
"description": "Daily coding, features, tests"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"alias": "haiku",
|
|
41
|
+
"modelId": "claude-haiku-4-5-20251001",
|
|
42
|
+
"description": "Quick tasks, syntax correction"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"alias": "opus[1m]",
|
|
46
|
+
"modelId": "opus[1m]",
|
|
47
|
+
"description": "Complex reasoning with 1M context window"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"alias": "sonnet[1m]",
|
|
51
|
+
"modelId": "sonnet[1m]",
|
|
52
|
+
"description": "Daily coding with 1M context window"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"alias": "glm-5.3",
|
|
56
|
+
"modelId": "glm-5.3",
|
|
57
|
+
"description": "Zhipu GLM-5.3 via the Evolve gateway"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"alias": "glm-5.3-flash",
|
|
61
|
+
"modelId": "glm-5.3-flash",
|
|
62
|
+
"description": "Zhipu GLM-5.3 Flash via the Evolve gateway"
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"alias": "openrouter/deepseek/deepseek-v4.1-flash",
|
|
66
|
+
"modelId": "openrouter/deepseek/deepseek-v4.1-flash",
|
|
67
|
+
"description": "DeepSeek V4.1 Flash via OpenRouter"
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"alias": "fireworks/deepseek-v4.1-flash",
|
|
71
|
+
"modelId": "fireworks/deepseek-v4.1-flash",
|
|
72
|
+
"description": "DeepSeek V4.1 Flash via Fireworks"
|
|
73
|
+
}
|
|
74
|
+
],
|
|
75
|
+
"effortSupport": "level",
|
|
76
|
+
"efforts": [
|
|
77
|
+
"off",
|
|
78
|
+
"minimal",
|
|
79
|
+
"low",
|
|
80
|
+
"medium",
|
|
81
|
+
"high",
|
|
82
|
+
"xhigh",
|
|
83
|
+
"max",
|
|
84
|
+
"thinking"
|
|
85
|
+
],
|
|
86
|
+
"defaultEffort": "high",
|
|
87
|
+
"supportsConfig": true,
|
|
88
|
+
"presets": [
|
|
89
|
+
"no-internet",
|
|
90
|
+
"pinned-context"
|
|
91
|
+
]
|
|
92
|
+
},
|
|
93
|
+
"codex": {
|
|
94
|
+
"defaultModel": "gpt-5.6-sol",
|
|
95
|
+
"models": [
|
|
96
|
+
{
|
|
97
|
+
"alias": "gpt-6-astra",
|
|
98
|
+
"modelId": "gpt-6-astra",
|
|
99
|
+
"description": "Newest frontier flagship"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"alias": "gpt-5.6-sol",
|
|
103
|
+
"modelId": "gpt-5.6-sol",
|
|
104
|
+
"description": "GPT-5.6 flagship (previous generation)"
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"alias": "gpt-5.6-terra",
|
|
108
|
+
"modelId": "gpt-5.6-terra",
|
|
109
|
+
"description": "Balances intelligence and cost"
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"alias": "gpt-5.6-luna",
|
|
113
|
+
"modelId": "gpt-5.6-luna",
|
|
114
|
+
"description": "High-volume, cost-sensitive tier"
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"alias": "gpt-5.5",
|
|
118
|
+
"modelId": "gpt-5.5",
|
|
119
|
+
"description": "GPT-5.5 frontier model (two generations back)"
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"alias": "gpt-5.3-codex",
|
|
123
|
+
"modelId": "gpt-5.3-codex",
|
|
124
|
+
"description": "Industry-leading code-optimized"
|
|
125
|
+
}
|
|
126
|
+
],
|
|
127
|
+
"effortSupport": "level",
|
|
128
|
+
"efforts": [
|
|
129
|
+
"off",
|
|
130
|
+
"minimal",
|
|
131
|
+
"low",
|
|
132
|
+
"medium",
|
|
133
|
+
"high",
|
|
134
|
+
"xhigh",
|
|
135
|
+
"max",
|
|
136
|
+
"thinking"
|
|
137
|
+
],
|
|
138
|
+
"defaultEffort": "high",
|
|
139
|
+
"supportsConfig": true,
|
|
140
|
+
"presets": [
|
|
141
|
+
"no-internet",
|
|
142
|
+
"pinned-context"
|
|
143
|
+
]
|
|
144
|
+
},
|
|
145
|
+
"droid": {
|
|
146
|
+
"defaultModel": "claude-opus-5",
|
|
147
|
+
"models": [
|
|
148
|
+
{
|
|
149
|
+
"alias": "claude-fable-5.1",
|
|
150
|
+
"modelId": "claude-fable-5-1",
|
|
151
|
+
"description": "Factory-managed Claude Fable 5.1"
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
"alias": "claude-opus-5",
|
|
155
|
+
"modelId": "claude-opus-5",
|
|
156
|
+
"description": "Factory-managed Claude Opus 5"
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
"alias": "claude-sonnet-5",
|
|
160
|
+
"modelId": "claude-sonnet-5",
|
|
161
|
+
"description": "Factory-managed Claude Sonnet 5"
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
"alias": "claude-haiku-4-5",
|
|
165
|
+
"modelId": "claude-haiku-4-5-20251001",
|
|
166
|
+
"description": "Factory-managed Claude Haiku 4.5"
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
"alias": "gpt-6-astra",
|
|
170
|
+
"modelId": "gpt-6-astra",
|
|
171
|
+
"description": "Factory-managed GPT-6 Astra"
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"alias": "gpt-5.6-sol",
|
|
175
|
+
"modelId": "gpt-5.6-sol",
|
|
176
|
+
"description": "Factory-managed GPT-5.6 Sol"
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
"alias": "gpt-5.6-terra",
|
|
180
|
+
"modelId": "gpt-5.6-terra",
|
|
181
|
+
"description": "Factory-managed GPT-5.6 Terra"
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"alias": "gpt-5.6-luna",
|
|
185
|
+
"modelId": "gpt-5.6-luna",
|
|
186
|
+
"description": "Factory-managed GPT-5.6 Luna"
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
"alias": "gemini-3.6-flash",
|
|
190
|
+
"modelId": "gemini-3.6-flash",
|
|
191
|
+
"description": "Factory-managed Gemini 3.6 Flash"
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
"alias": "qwen3.7-max",
|
|
195
|
+
"modelId": "qwen3.7-max",
|
|
196
|
+
"description": "Qwen 3.7 Max via the Evolve gateway"
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"alias": "kimi-k3",
|
|
200
|
+
"modelId": "kimi-k3",
|
|
201
|
+
"description": "Factory-managed Droid Core Kimi K3"
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
"alias": "glm-5.3",
|
|
205
|
+
"modelId": "glm-5.3",
|
|
206
|
+
"description": "Zhipu GLM-5.3 via the Evolve gateway"
|
|
207
|
+
},
|
|
208
|
+
{
|
|
209
|
+
"alias": "glm-5.3-flash",
|
|
210
|
+
"modelId": "glm-5.3-flash",
|
|
211
|
+
"description": "Zhipu GLM-5.3 Flash via the Evolve gateway"
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
"alias": "openrouter/deepseek/deepseek-v4.1-flash",
|
|
215
|
+
"modelId": "openrouter/deepseek/deepseek-v4.1-flash",
|
|
216
|
+
"description": "DeepSeek V4.1 Flash via OpenRouter"
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
"alias": "fireworks/deepseek-v4.1-flash",
|
|
220
|
+
"modelId": "fireworks/deepseek-v4.1-flash",
|
|
221
|
+
"description": "DeepSeek V4.1 Flash via Fireworks"
|
|
222
|
+
}
|
|
223
|
+
],
|
|
224
|
+
"effortSupport": "level",
|
|
225
|
+
"efforts": [
|
|
226
|
+
"off",
|
|
227
|
+
"minimal",
|
|
228
|
+
"low",
|
|
229
|
+
"medium",
|
|
230
|
+
"high",
|
|
231
|
+
"xhigh",
|
|
232
|
+
"max",
|
|
233
|
+
"thinking"
|
|
234
|
+
],
|
|
235
|
+
"defaultEffort": "high",
|
|
236
|
+
"supportsConfig": false,
|
|
237
|
+
"presets": []
|
|
238
|
+
},
|
|
239
|
+
"gemini": {
|
|
240
|
+
"defaultModel": "gemini-3.5-flash",
|
|
241
|
+
"models": [
|
|
242
|
+
{
|
|
243
|
+
"alias": "gemini-3.5-flash",
|
|
244
|
+
"modelId": "gemini-3.5-flash",
|
|
245
|
+
"description": "Latest flash the stable gemini CLI serves: coding + agentic planning"
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"alias": "gemini-3.5-flash-lite",
|
|
249
|
+
"modelId": "gemini-3.5-flash-lite",
|
|
250
|
+
"description": "Most cost-effective 3.5-class model"
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
"alias": "gemini-3.1-pro-preview",
|
|
254
|
+
"modelId": "gemini-3.1-pro-preview",
|
|
255
|
+
"description": "Latest pro, complex agentic + coding"
|
|
256
|
+
}
|
|
257
|
+
],
|
|
258
|
+
"effortSupport": "none",
|
|
259
|
+
"efforts": [],
|
|
260
|
+
"defaultEffort": null,
|
|
261
|
+
"supportsConfig": false,
|
|
262
|
+
"presets": []
|
|
263
|
+
},
|
|
264
|
+
"kimi": {
|
|
265
|
+
"defaultModel": "kimi-k3",
|
|
266
|
+
"models": [
|
|
267
|
+
{
|
|
268
|
+
"alias": "kimi-k3",
|
|
269
|
+
"modelId": "moonshot/kimi-k3",
|
|
270
|
+
"description": "Latest flagship: 1M context, always-on thinking",
|
|
271
|
+
"maxContextSize": 1048576
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
"alias": "kimi-k2.7-code",
|
|
275
|
+
"modelId": "moonshot/kimi-k2.7-code",
|
|
276
|
+
"description": "Latest coding-specialized standard model"
|
|
277
|
+
},
|
|
278
|
+
{
|
|
279
|
+
"alias": "kimi-k3-raptor",
|
|
280
|
+
"modelId": "kimi-k3-raptor",
|
|
281
|
+
"description": "Evolve-managed Kimi K3 Raptor route for latency-sensitive agent runs",
|
|
282
|
+
"maxContextSize": 1048576
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
"alias": "kimi-k2p7-code-raptor",
|
|
286
|
+
"modelId": "kimi-k2p7-code-raptor",
|
|
287
|
+
"description": "Evolve-managed Kimi K2.7 Code Raptor route for latency-sensitive agent runs"
|
|
288
|
+
}
|
|
289
|
+
],
|
|
290
|
+
"effortSupport": "level",
|
|
291
|
+
"efforts": [
|
|
292
|
+
"off",
|
|
293
|
+
"minimal",
|
|
294
|
+
"low",
|
|
295
|
+
"medium",
|
|
296
|
+
"high",
|
|
297
|
+
"xhigh",
|
|
298
|
+
"max",
|
|
299
|
+
"thinking"
|
|
300
|
+
],
|
|
301
|
+
"defaultEffort": "max",
|
|
302
|
+
"supportsConfig": false,
|
|
303
|
+
"presets": []
|
|
304
|
+
},
|
|
305
|
+
"opencode": {
|
|
306
|
+
"defaultModel": "openrouter/anthropic/claude-opus-5",
|
|
307
|
+
"models": [
|
|
308
|
+
{
|
|
309
|
+
"alias": "openrouter/anthropic/claude-fable-5.1",
|
|
310
|
+
"modelId": "openrouter/anthropic/claude-fable-5.1",
|
|
311
|
+
"description": "Anthropic Fable 5.1 via OpenRouter"
|
|
312
|
+
},
|
|
313
|
+
{
|
|
314
|
+
"alias": "openrouter/anthropic/claude-opus-5",
|
|
315
|
+
"modelId": "openrouter/anthropic/claude-opus-5",
|
|
316
|
+
"description": "Anthropic Opus 5 via OpenRouter"
|
|
317
|
+
},
|
|
318
|
+
{
|
|
319
|
+
"alias": "openrouter/anthropic/claude-sonnet-5",
|
|
320
|
+
"modelId": "openrouter/anthropic/claude-sonnet-5",
|
|
321
|
+
"description": "Anthropic Sonnet 5 via OpenRouter"
|
|
322
|
+
},
|
|
323
|
+
{
|
|
324
|
+
"alias": "openrouter/anthropic/claude-haiku-4.5",
|
|
325
|
+
"modelId": "openrouter/anthropic/claude-haiku-4.5",
|
|
326
|
+
"description": "Anthropic Haiku via OpenRouter"
|
|
327
|
+
},
|
|
328
|
+
{
|
|
329
|
+
"alias": "openrouter/openai/gpt-6-astra",
|
|
330
|
+
"modelId": "openrouter/openai/gpt-6-astra",
|
|
331
|
+
"description": "OpenAI GPT-6 Astra via OpenRouter"
|
|
332
|
+
},
|
|
333
|
+
{
|
|
334
|
+
"alias": "openrouter/openai/gpt-5.6-sol",
|
|
335
|
+
"modelId": "openrouter/openai/gpt-5.6-sol",
|
|
336
|
+
"description": "OpenAI GPT-5.6 Sol via OpenRouter"
|
|
337
|
+
},
|
|
338
|
+
{
|
|
339
|
+
"alias": "openrouter/openai/gpt-5.6-terra",
|
|
340
|
+
"modelId": "openrouter/openai/gpt-5.6-terra",
|
|
341
|
+
"description": "OpenAI GPT-5.6 Terra via OpenRouter"
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
"alias": "openrouter/openai/gpt-5.6-luna",
|
|
345
|
+
"modelId": "openrouter/openai/gpt-5.6-luna",
|
|
346
|
+
"description": "OpenAI GPT-5.6 Luna via OpenRouter"
|
|
347
|
+
},
|
|
348
|
+
{
|
|
349
|
+
"alias": "openrouter/google/gemini-3.6-flash",
|
|
350
|
+
"modelId": "openrouter/google/gemini-3.6-flash",
|
|
351
|
+
"description": "Gemini 3.6 Flash via OpenRouter"
|
|
352
|
+
},
|
|
353
|
+
{
|
|
354
|
+
"alias": "openrouter/qwen/qwen3.7-max",
|
|
355
|
+
"modelId": "openrouter/qwen/qwen3.7-max",
|
|
356
|
+
"description": "Qwen 3.7 Max via OpenRouter"
|
|
357
|
+
},
|
|
358
|
+
{
|
|
359
|
+
"alias": "openrouter/moonshotai/kimi-k3",
|
|
360
|
+
"modelId": "openrouter/moonshotai/kimi-k3",
|
|
361
|
+
"description": "Kimi K3 via OpenRouter"
|
|
362
|
+
},
|
|
363
|
+
{
|
|
364
|
+
"alias": "openrouter/z-ai/glm-5.3",
|
|
365
|
+
"modelId": "openrouter/z-ai/glm-5.3",
|
|
366
|
+
"description": "Zhipu GLM-5.3 via OpenRouter"
|
|
367
|
+
},
|
|
368
|
+
{
|
|
369
|
+
"alias": "openrouter/z-ai/glm-5.3-flash",
|
|
370
|
+
"modelId": "openrouter/z-ai/glm-5.3-flash",
|
|
371
|
+
"description": "Zhipu GLM-5.3 Flash (OpenRouter id; the Evolve gateway serves it from Fireworks)"
|
|
372
|
+
},
|
|
373
|
+
{
|
|
374
|
+
"alias": "openrouter/deepseek/deepseek-v4.1-flash",
|
|
375
|
+
"modelId": "openrouter/deepseek/deepseek-v4.1-flash",
|
|
376
|
+
"description": "DeepSeek V4.1 Flash via OpenRouter"
|
|
377
|
+
},
|
|
378
|
+
{
|
|
379
|
+
"alias": "fireworks/deepseek-v4.1-flash",
|
|
380
|
+
"modelId": "fireworks/deepseek-v4.1-flash",
|
|
381
|
+
"description": "DeepSeek V4.1 Flash via Fireworks"
|
|
382
|
+
}
|
|
383
|
+
],
|
|
384
|
+
"effortSupport": "level",
|
|
385
|
+
"efforts": [
|
|
386
|
+
"off",
|
|
387
|
+
"minimal",
|
|
388
|
+
"low",
|
|
389
|
+
"medium",
|
|
390
|
+
"high",
|
|
391
|
+
"xhigh",
|
|
392
|
+
"max",
|
|
393
|
+
"thinking"
|
|
394
|
+
],
|
|
395
|
+
"defaultEffort": "high",
|
|
396
|
+
"supportsConfig": false,
|
|
397
|
+
"presets": []
|
|
398
|
+
},
|
|
399
|
+
"qwen": {
|
|
400
|
+
"defaultModel": "qwen3.7-max",
|
|
401
|
+
"models": [
|
|
402
|
+
{
|
|
403
|
+
"alias": "qwen3.7-max",
|
|
404
|
+
"modelId": "qwen3.7-max",
|
|
405
|
+
"description": "Strongest reasoning and coding option"
|
|
406
|
+
},
|
|
407
|
+
{
|
|
408
|
+
"alias": "qwen3.7-plus",
|
|
409
|
+
"modelId": "qwen3.7-plus",
|
|
410
|
+
"description": "Latest balanced Qwen Cloud recommendation"
|
|
411
|
+
},
|
|
412
|
+
{
|
|
413
|
+
"alias": "qwen3.6-flash",
|
|
414
|
+
"modelId": "qwen3.6-flash",
|
|
415
|
+
"description": "Fast and cost-effective option"
|
|
416
|
+
}
|
|
417
|
+
],
|
|
418
|
+
"effortSupport": "binary",
|
|
419
|
+
"efforts": [
|
|
420
|
+
"off",
|
|
421
|
+
"minimal",
|
|
422
|
+
"medium",
|
|
423
|
+
"thinking"
|
|
424
|
+
],
|
|
425
|
+
"defaultEffort": "thinking",
|
|
426
|
+
"supportsConfig": false,
|
|
427
|
+
"presets": []
|
|
428
|
+
}
|
|
429
|
+
}
|
|
430
|
+
}
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$comment": "The hosted evals API's error-code vocabulary, checked in so two repos that share no test runner can be held to one list. The contract owns it: the ErrorCode enum in spec/openapi.yaml is the only place a code may be added. This file is that enum's shadow, and the tests keep everyone honest — the server regenerates these exact bytes and diffs them, the TypeScript SDK asserts HOSTED_ERROR_CODES equals codes[], and the Python SDK asserts both its tuple and its Literal do. Adding a code therefore means: spec enum, this file, both SDK lists.",
|
|
3
|
+
"codes": [
|
|
4
|
+
"missing_authorization",
|
|
5
|
+
"invalid_api_key",
|
|
6
|
+
"read_only_key",
|
|
7
|
+
"credential_service_unavailable",
|
|
8
|
+
"rate_limited",
|
|
9
|
+
"insufficient_credits",
|
|
10
|
+
"quota_exceeded",
|
|
11
|
+
"invalid_json",
|
|
12
|
+
"invalid_input",
|
|
13
|
+
"invalid_limit",
|
|
14
|
+
"invalid_status",
|
|
15
|
+
"invalid_visibility",
|
|
16
|
+
"invalid_cursor",
|
|
17
|
+
"invalid_after",
|
|
18
|
+
"invalid_format",
|
|
19
|
+
"invalid_ids",
|
|
20
|
+
"invalid_multipart",
|
|
21
|
+
"idempotency_key_reused",
|
|
22
|
+
"dataset_not_found",
|
|
23
|
+
"dataset_version_not_found",
|
|
24
|
+
"dataset_name_taken",
|
|
25
|
+
"dataset_in_use",
|
|
26
|
+
"dataset_not_owned",
|
|
27
|
+
"dataset_import_in_progress",
|
|
28
|
+
"upstream_not_watchable",
|
|
29
|
+
"no_active_version",
|
|
30
|
+
"version_not_ready",
|
|
31
|
+
"version_not_activatable",
|
|
32
|
+
"unknown_task_names",
|
|
33
|
+
"no_tasks",
|
|
34
|
+
"task_not_found",
|
|
35
|
+
"task_failed_to_build",
|
|
36
|
+
"upload_session_not_found",
|
|
37
|
+
"upload_offset_mismatch",
|
|
38
|
+
"upload_chunk_digest_mismatch",
|
|
39
|
+
"upload_incomplete",
|
|
40
|
+
"upload_archive_digest_mismatch",
|
|
41
|
+
"upload_session_failed",
|
|
42
|
+
"too_many_concurrent_upload_chunks",
|
|
43
|
+
"agent_not_found",
|
|
44
|
+
"agent_name_taken",
|
|
45
|
+
"agent_name_reserved",
|
|
46
|
+
"agent_invalid_name",
|
|
47
|
+
"agent_source_required",
|
|
48
|
+
"agent_source_conflict",
|
|
49
|
+
"agent_invalid_env",
|
|
50
|
+
"agent_too_large",
|
|
51
|
+
"agent_limit_reached",
|
|
52
|
+
"skill_not_found",
|
|
53
|
+
"skill_name_not_found",
|
|
54
|
+
"skill_ref_invalid",
|
|
55
|
+
"skill_unresolvable",
|
|
56
|
+
"skill_invalid",
|
|
57
|
+
"skill_in_use",
|
|
58
|
+
"skill_too_large",
|
|
59
|
+
"skill_limit_reached",
|
|
60
|
+
"too_many_concurrent_skill_uploads",
|
|
61
|
+
"secret_not_found",
|
|
62
|
+
"secret_ambiguous",
|
|
63
|
+
"secret_brokered_unsupported",
|
|
64
|
+
"secret_exists",
|
|
65
|
+
"secret_not_attached",
|
|
66
|
+
"agent_version_not_found",
|
|
67
|
+
"agent_version_unresolvable",
|
|
68
|
+
"agent_kwarg_unsupported",
|
|
69
|
+
"agent_config_unsupported",
|
|
70
|
+
"agent_config_key_refused",
|
|
71
|
+
"agent_preset_unsupported",
|
|
72
|
+
"provider_unsupported",
|
|
73
|
+
"job_not_found",
|
|
74
|
+
"job_not_terminal",
|
|
75
|
+
"no_failed_trials",
|
|
76
|
+
"trial_not_found",
|
|
77
|
+
"trial_not_settled",
|
|
78
|
+
"concurrent_update",
|
|
79
|
+
"regrade_source_ineligible",
|
|
80
|
+
"no_regradable_trials",
|
|
81
|
+
"invalid_rubric",
|
|
82
|
+
"analysis_already_running",
|
|
83
|
+
"analysis_not_found",
|
|
84
|
+
"analysis_not_terminal",
|
|
85
|
+
"check_not_found",
|
|
86
|
+
"check_not_terminal",
|
|
87
|
+
"no_checkable_tasks",
|
|
88
|
+
"too_many_concurrent_check_uploads",
|
|
89
|
+
"no_analyzable_trials",
|
|
90
|
+
"not_a_job_dir",
|
|
91
|
+
"invalid_trial",
|
|
92
|
+
"trial_too_large",
|
|
93
|
+
"upload_too_large",
|
|
94
|
+
"job_uploaded",
|
|
95
|
+
"job_already_uploaded",
|
|
96
|
+
"too_many_concurrent_job_uploads",
|
|
97
|
+
"job_import_not_found",
|
|
98
|
+
"import_not_found",
|
|
99
|
+
"import_too_large",
|
|
100
|
+
"too_many_concurrent_imports",
|
|
101
|
+
"invalid_archive",
|
|
102
|
+
"unpinned_git_ref",
|
|
103
|
+
"hub_package_not_found",
|
|
104
|
+
"hub_unreachable",
|
|
105
|
+
"package_not_retained",
|
|
106
|
+
"package_corrupt",
|
|
107
|
+
"package_missing",
|
|
108
|
+
"too_many_concurrent_package_downloads",
|
|
109
|
+
"org_not_found",
|
|
110
|
+
"org_slug_taken",
|
|
111
|
+
"org_forbidden",
|
|
112
|
+
"org_personal_immutable",
|
|
113
|
+
"org_last_owner",
|
|
114
|
+
"org_in_use",
|
|
115
|
+
"org_member_not_found",
|
|
116
|
+
"invite_not_found",
|
|
117
|
+
"invite_invalid",
|
|
118
|
+
"internal_error"
|
|
119
|
+
]
|
|
120
|
+
}
|
package/index.cjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require("@evolvingmachines/evolve");
|
package/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@evolvingmachines/evolve";
|
package/index.mjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@evolvingmachines/evolve";
|