@tangle-network/agent-eval 0.173.0 → 0.173.1
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 +9 -0
- package/dist/analyst/index.d.ts +2 -2
- package/dist/analyst/index.js +1 -1
- package/dist/{benchmark-command-9S20PRel.js → benchmark-command-k-fOGzt8.js} +3 -3
- package/dist/{benchmark-command-9S20PRel.js.map → benchmark-command-k-fOGzt8.js.map} +1 -1
- package/dist/cli.js +1 -1
- package/dist/openapi.json +1 -1
- package/docs/campaign-proposers.md +15 -2
- package/package.json +3 -1
package/dist/cli.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import { i as runRolloutReleaseCli } from "./hf-dataset-D8_RNIis.js";
|
|
3
3
|
import { t as createChatClient } from "./chat-client-Db4bqYfA.js";
|
|
4
|
-
import { t as runAnalystBenchmarkCommand } from "./benchmark-command-
|
|
4
|
+
import { t as runAnalystBenchmarkCommand } from "./benchmark-command-k-fOGzt8.js";
|
|
5
5
|
import { a as runRpcBatch, o as runRpcOnce, p as handleVersion, r as startServerAsync, s as buildOpenApi } from "./server-BR6onwZB.js";
|
|
6
6
|
import { writeFileSync } from "node:fs";
|
|
7
7
|
//#region src/cli-config.ts
|
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.173.
|
|
5
|
+
"version": "0.173.1",
|
|
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.1.0. Bumps on breaking changes to request/response schemas.",
|
|
7
7
|
"contact": {
|
|
8
8
|
"name": "Tangle Network",
|
|
@@ -214,14 +214,27 @@ Install the bridge and the published GEPA package for the standard engine:
|
|
|
214
214
|
|
|
215
215
|
```sh
|
|
216
216
|
python -m pip install agent-eval-rpc
|
|
217
|
-
python -m pip install
|
|
217
|
+
python -m pip install \
|
|
218
|
+
"gepa==0.1.4" \
|
|
219
|
+
"litellm>=1.83.0,<1.92" \
|
|
220
|
+
"tqdm>=4.66.1" \
|
|
221
|
+
"cloudpickle>=3.0.0" \
|
|
222
|
+
"datasets>=2.14.6" \
|
|
223
|
+
"wandb"
|
|
218
224
|
```
|
|
219
225
|
|
|
226
|
+
Do not install `gepa[full]`; its MLflow server dependency is unpatched.
|
|
227
|
+
|
|
220
228
|
Use the tested official source revision for composed recipes and the source-only engines:
|
|
221
229
|
|
|
222
230
|
```sh
|
|
223
231
|
python -m pip install \
|
|
224
|
-
"gepa
|
|
232
|
+
"gepa @ git+https://github.com/gepa-ai/gepa.git@f919db0a622e2e9f9204779b81fe00cc1b2d808f" \
|
|
233
|
+
"litellm>=1.83.0,<1.92" \
|
|
234
|
+
"tqdm>=4.66.1" \
|
|
235
|
+
"cloudpickle>=3.0.0" \
|
|
236
|
+
"datasets>=2.14.6" \
|
|
237
|
+
"wandb"
|
|
225
238
|
```
|
|
226
239
|
|
|
227
240
|
From this repository:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tangle-network/agent-eval",
|
|
3
|
-
"version": "0.173.
|
|
3
|
+
"version": "0.173.1",
|
|
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": {
|
|
@@ -237,6 +237,8 @@
|
|
|
237
237
|
"overrides": {
|
|
238
238
|
"@arizeai/openinference-core>@opentelemetry/core": "^2.10.0",
|
|
239
239
|
"esbuild@>=0.27.3 <0.28.1": "^0.28.1",
|
|
240
|
+
"fast-uri": "3.1.5",
|
|
241
|
+
"js-yaml": "4.3.1",
|
|
240
242
|
"postcss@<8.5.18": "^8.5.18",
|
|
241
243
|
"vite@>=7.0.0 <=7.3.4": "^7.3.5",
|
|
242
244
|
"ws@>=8.0.0 <8.21.0": "^8.21.0"
|