@tangle-network/agent-eval 0.123.6 → 0.123.7
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 +8 -1
- package/dist/openapi.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -53,12 +53,19 @@ All notable changes to `@tangle-network/agent-eval` and its sibling `agent-eval-
|
|
|
53
53
|
- `runSkillOpt({ holdoutScenarios })` fails closed because those rows are adaptively reused.
|
|
54
54
|
Pass `selectionScenarios`; selection result fields now use `Selection` instead of `Holdout`, and `lift` is now `selectionLift`.
|
|
55
55
|
|
|
56
|
+
## [0.123.7] — 2026-07-23 — publishable GEPA bridge metadata
|
|
57
|
+
|
|
58
|
+
### Fixed
|
|
59
|
+
|
|
60
|
+
- Keep the unreleased GEPA Optimize Anything commit pinned as a source-checkout dependency group and document its explicit installation, instead of embedding a Git URL in the `agent-eval-rpc` wheel metadata that PyPI rejects.
|
|
61
|
+
- Build and inspect Python distributions during pull-request and release verification so a direct-URL runtime dependency cannot split npm and PyPI releases again.
|
|
62
|
+
|
|
56
63
|
## [0.123.6] — 2026-07-23 — optimization and rollout exports
|
|
57
64
|
|
|
58
65
|
### Added
|
|
59
66
|
|
|
60
67
|
- `mintRolloutRows()` joins existing run records and traces into `tangle.rollout.v1` rows; `toSftRows()`, `toRewardRows()`, and `toJsonl()` serialize clean-success and reward-labeled training data while preserving missing-trace and realness-block evidence.
|
|
61
|
-
- `gepaOptimizationMethod()` delegates bounded single-engine and Omni-shaped `optimize_best_of()` then `optimize_anything()` recipes to GEPA through the
|
|
68
|
+
- `gepaOptimizationMethod()` delegates bounded single-engine and Omni-shaped `optimize_best_of()` then `optimize_anything()` recipes to GEPA through the Python bridge.
|
|
62
69
|
The caller chooses the train and selection fields sent to GEPA, final comparison cases remain inside `agent-eval`, and proposer spend without agent-eval receipts is reported as incomplete.
|
|
63
70
|
|
|
64
71
|
## [0.122.2] — 2026-07-17 — premeasured optimization continuation
|
package/dist/openapi.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"openapi": "3.1.0",
|
|
3
3
|
"info": {
|
|
4
4
|
"title": "@tangle-network/agent-eval — wire protocol",
|
|
5
|
-
"version": "0.123.
|
|
5
|
+
"version": "0.123.7",
|
|
6
6
|
"description": "HTTP and stdio RPC interface to agent-eval. The TypeScript runtime is the source of truth; this spec is the contract that cross-language clients (Python, Rust, Go) generate from.\n\nWire-protocol version: 1.0.0. Bumps on breaking changes to request/response schemas.",
|
|
7
7
|
"contact": {
|
|
8
8
|
"name": "Tangle Network",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tangle-network/agent-eval",
|
|
3
|
-
"version": "0.123.
|
|
3
|
+
"version": "0.123.7",
|
|
4
4
|
"description": "Evaluate and improve AI agents from runs, traces, judges, and feedback. Compare candidates, cluster failures, measure lift, and gate releases.",
|
|
5
5
|
"homepage": "https://github.com/tangle-network/agent-eval#readme",
|
|
6
6
|
"repository": {
|