@evolvingmachines/evolve 0.0.60 → 0.0.61
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/dist/chunk-N2LMMVL4.js +427 -0
- package/dist/cli/index.cjs +38 -37
- package/dist/cli/index.d.cts +3 -1
- package/dist/cli/index.d.ts +3 -1
- package/dist/cli/index.js +29 -28
- package/dist/index.cjs +54 -54
- package/dist/index.d.cts +111 -7
- package/dist/index.d.ts +111 -7
- package/dist/index.js +38 -38
- package/dist/{types-DlpTxdR_.d.cts → types-CMEpx9QI.d.cts} +313 -5
- package/dist/{types-DlpTxdR_.d.ts → types-CMEpx9QI.d.ts} +313 -5
- package/hosted-error-codes.json +6 -0
- package/package.json +5 -5
- package/skills/evolve-evals/references/cli-reference/analysis.mdx +69 -0
- package/skills/evolve-evals/references/cli-reference/check.mdx +86 -0
- package/skills/evolve-evals/references/cli-reference/dataset.mdx +13 -0
- package/skills/evolve-evals/references/cli-reference/run.mdx +6 -0
- package/skills/evolve-evals/references/cli-reference/trial.mdx +71 -2
- package/skills/evolve-evals/references/core-concepts/trial-outputs.mdx +14 -0
- package/skills/evolve-evals/references/sdk/python.mdx +22 -0
- package/skills/evolve-evals/references/sdk/typescript.mdx +22 -0
- package/skills/evolve-evals/references/sdk-reference/analyses.mdx +70 -0
- package/skills/evolve-evals/references/sdk-reference/checks.mdx +105 -4
- package/skills/evolve-evals/references/sdk-reference/datasets.mdx +40 -0
- package/skills/evolve-evals/references/sdk-reference/errors.mdx +11 -0
- package/skills/evolve-evals/references/sdk-reference/jobs.mdx +1 -1
- package/skills/evolve-evals/references/sdk-reference/trials.mdx +70 -0
- package/spec/openapi.yaml +3021 -360
- package/dist/chunk-JS2UTK2I.js +0 -427
package/dist/cli/index.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { T as Trial, a as TrialAnalysis, A as AgentInput, J as JobCreate, P as PublishDatasetInput, D as DatasetVersion, b as DatasetImport, C as Check, c as JobEvent, d as DatasetFailedTask, e as DatasetImportProgress, R as Rubric, f as JobSecretInline, g as JobSecretRef, h as TraceEvent } from '../types-
|
|
2
|
+
import { T as Trial, a as TrialAnalysis, A as AgentInput, J as JobCreate, P as PublishDatasetInput, D as DatasetVersion, b as DatasetImport, C as Check, c as JobEvent, d as DatasetFailedTask, e as DatasetImportProgress, R as Rubric, f as JobSecretInline, g as JobSecretRef, h as TraceEvent } from '../types-CMEpx9QI.cjs';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* evolve — the CLI for Evolve hosted datasets & jobs.
|
|
@@ -160,6 +160,8 @@ declare function buildAgentInput(inv: Invocation, readScript?: (path: string) =>
|
|
|
160
160
|
interface CliIO {
|
|
161
161
|
out(line: string): void;
|
|
162
162
|
err(line: string): void;
|
|
163
|
+
/** Raw bytes to stdout (an archive piped to a file); absent = process.stdout. */
|
|
164
|
+
bytes?(buffer: Buffer): void;
|
|
163
165
|
/**
|
|
164
166
|
* True when stdout is an interactive terminal. Drives the table-vs-TSV
|
|
165
167
|
* split on list commands; TERM=dumb counts as non-interactive. Defaults to
|
package/dist/cli/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { T as Trial, a as TrialAnalysis, A as AgentInput, J as JobCreate, P as PublishDatasetInput, D as DatasetVersion, b as DatasetImport, C as Check, c as JobEvent, d as DatasetFailedTask, e as DatasetImportProgress, R as Rubric, f as JobSecretInline, g as JobSecretRef, h as TraceEvent } from '../types-
|
|
2
|
+
import { T as Trial, a as TrialAnalysis, A as AgentInput, J as JobCreate, P as PublishDatasetInput, D as DatasetVersion, b as DatasetImport, C as Check, c as JobEvent, d as DatasetFailedTask, e as DatasetImportProgress, R as Rubric, f as JobSecretInline, g as JobSecretRef, h as TraceEvent } from '../types-CMEpx9QI.js';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* evolve — the CLI for Evolve hosted datasets & jobs.
|
|
@@ -160,6 +160,8 @@ declare function buildAgentInput(inv: Invocation, readScript?: (path: string) =>
|
|
|
160
160
|
interface CliIO {
|
|
161
161
|
out(line: string): void;
|
|
162
162
|
err(line: string): void;
|
|
163
|
+
/** Raw bytes to stdout (an archive piped to a file); absent = process.stdout. */
|
|
164
|
+
bytes?(buffer: Buffer): void;
|
|
163
165
|
/**
|
|
164
166
|
* True when stdout is an interactive terminal. Drives the table-vs-TSV
|
|
165
167
|
* split on list commands; TERM=dumb counts as non-interactive. Defaults to
|