@ls-stack/agent-eval 0.34.0 → 0.35.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/dist/{app-DOE-crd0.mjs → app-CcZv9l_q.mjs} +4 -4
- package/dist/apps/web/dist/assets/{index-ol64metU.js → index-sWPMWjFJ.js} +44 -44
- package/dist/apps/web/dist/index.html +1 -1
- package/dist/bin.mjs +1 -1
- package/dist/{cli-CG66f0GN.mjs → cli-CVwIjcsX.mjs} +3 -3
- package/dist/index.d.mts +62 -62
- package/dist/index.mjs +3 -3
- package/dist/runChild.mjs +1 -1
- package/dist/{runOrchestration-CYhn4DJ0.mjs → runOrchestration-DoslE_Oo.mjs} +8 -19
- package/dist/{runner-j9b6g0h0.mjs → runner-ChHgWruW.mjs} +2 -2
- package/dist/{runner-D5i7HLcE.mjs → runner-DA_o115w.mjs} +1 -1
- package/dist/src-Bcc2ZHK8.mjs +3 -0
- package/package.json +1 -1
- package/skills/agent-eval/SKILL.md +6 -5
- package/dist/src-B0b1vgk0.mjs +0 -3
package/package.json
CHANGED
|
@@ -298,11 +298,12 @@ See `EvalScoreDef` / `EvalManualScoreDef` in the types for the full shape
|
|
|
298
298
|
## Outputs, columns, trace display
|
|
299
299
|
|
|
300
300
|
- `setEvalOutput(key, value)` writes reviewable data for the case. Values are
|
|
301
|
-
|
|
302
|
-
`Blob`/`File`
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
301
|
+
stored as received: primitives, objects/arrays, explicit file refs, and
|
|
302
|
+
native `Blob`/`File` values. `columns.format` only controls visualization.
|
|
303
|
+
Non-JSON runtime values such as `Date`, `Map`, `Set`, `BigInt`, typed arrays,
|
|
304
|
+
and class instances use the tagged value serializer instead of a string
|
|
305
|
+
fallback. Native `Blob`/`File` values are copied to run artifacts because
|
|
306
|
+
saved run files are JSON. Inside `execute`, prefer the context
|
|
306
307
|
`setOutput(key, value)` helper when writing schema-backed outputs; it is
|
|
307
308
|
typed from the eval's outputs generic. Keep `setEvalOutput` for shared
|
|
308
309
|
workflow code that does not receive the execute context.
|
package/dist/src-B0b1vgk0.mjs
DELETED