@tangle-network/agent-eval 0.126.5 → 0.126.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 +13 -0
- package/README.md +1 -1
- package/dist/analyst/index.d.ts +1 -1
- package/dist/benchmarks/index.js +2 -2
- package/dist/campaign/index.d.ts +2 -0
- package/dist/campaign/index.js +2 -2
- package/dist/{chunk-3I74FLK6.js → chunk-BTACVO2W.js} +6 -1
- package/dist/chunk-BTACVO2W.js.map +1 -0
- package/dist/{chunk-P6WN2KF5.js → chunk-E3IADPLG.js} +2 -2
- package/dist/contract/index.d.ts +46 -3
- package/dist/contract/index.js +184 -97
- package/dist/contract/index.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -2
- package/dist/openapi.json +1 -1
- package/package.json +19 -13
- package/dist/chunk-3I74FLK6.js.map +0 -1
- /package/dist/{chunk-P6WN2KF5.js.map → chunk-E3IADPLG.js.map} +0 -0
package/dist/index.d.ts
CHANGED
|
@@ -3036,7 +3036,7 @@ type RawAnalystFinding = z.infer<typeof RawAnalystFindingSchema>;
|
|
|
3036
3036
|
* item so persisted rows and older model fixtures remain readable. New output
|
|
3037
3037
|
* always receives the plural shape.
|
|
3038
3038
|
*/
|
|
3039
|
-
declare const CanonicalRawAnalystFindingSchema: z.
|
|
3039
|
+
declare const CanonicalRawAnalystFindingSchema: z.ZodPreprocess<z.ZodObject<{
|
|
3040
3040
|
evidence: z.ZodArray<z.ZodObject<{
|
|
3041
3041
|
uri: z.ZodString;
|
|
3042
3042
|
excerpt: z.ZodOptional<z.ZodString>;
|
package/dist/index.js
CHANGED
|
@@ -87,7 +87,7 @@ import {
|
|
|
87
87
|
pairArms,
|
|
88
88
|
parseCorrectnessResponse,
|
|
89
89
|
verifyCompletion
|
|
90
|
-
} from "./chunk-
|
|
90
|
+
} from "./chunk-E3IADPLG.js";
|
|
91
91
|
import {
|
|
92
92
|
DEFAULT_MUTATION_PRIMITIVES,
|
|
93
93
|
DEFAULT_RED_TEAM_CORPUS,
|
|
@@ -121,7 +121,7 @@ import {
|
|
|
121
121
|
scoreRedTeamOutput,
|
|
122
122
|
surfaceContentHash,
|
|
123
123
|
toolNamesForRun
|
|
124
|
-
} from "./chunk-
|
|
124
|
+
} from "./chunk-BTACVO2W.js";
|
|
125
125
|
import {
|
|
126
126
|
BackendIntegrityError,
|
|
127
127
|
assertRealAgentReceipts,
|
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.126.
|
|
5
|
+
"version": "0.126.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.126.
|
|
3
|
+
"version": "0.126.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": {
|
|
@@ -160,30 +160,36 @@
|
|
|
160
160
|
"verify:package": "pnpm run check:skill && node scripts/verify-package-exports.mjs"
|
|
161
161
|
},
|
|
162
162
|
"dependencies": {
|
|
163
|
-
"@asteasolutions/zod-to-openapi": "^
|
|
164
|
-
"@ax-llm/ax": "^23.0.
|
|
165
|
-
"@hono/node-server": "^2.0.
|
|
163
|
+
"@asteasolutions/zod-to-openapi": "^9.1.0",
|
|
164
|
+
"@ax-llm/ax": "^23.0.5",
|
|
165
|
+
"@hono/node-server": "^2.0.11",
|
|
166
166
|
"@tangle-network/agent-core": "^0.4.20",
|
|
167
167
|
"@tangle-network/agent-interface": "^0.32.0",
|
|
168
168
|
"@tangle-network/tcloud": "^0.4.14",
|
|
169
|
-
"hono": "^4.12.
|
|
170
|
-
"zod": "^4.3
|
|
169
|
+
"hono": "^4.12.32",
|
|
170
|
+
"zod": "^4.4.3"
|
|
171
171
|
},
|
|
172
172
|
"devDependencies": {
|
|
173
|
-
"@biomejs/biome": "^2.
|
|
174
|
-
"@types/node": "^
|
|
173
|
+
"@biomejs/biome": "^2.5.5",
|
|
174
|
+
"@types/node": "^26.1.1",
|
|
175
175
|
"husky": "^9.1.7",
|
|
176
|
-
"lint-staged": "^17.0
|
|
177
|
-
"openapi3-ts": "^4.
|
|
176
|
+
"lint-staged": "^17.2.0",
|
|
177
|
+
"openapi3-ts": "^4.6.0",
|
|
178
178
|
"tsup": "^8.0.0",
|
|
179
|
-
"typescript": "^5.
|
|
180
|
-
"vitest": "^
|
|
179
|
+
"typescript": "^5.9.3",
|
|
180
|
+
"vitest": "^4.1.10",
|
|
181
181
|
"yaml": "2.9.0"
|
|
182
182
|
},
|
|
183
183
|
"pnpm": {
|
|
184
184
|
"minimumReleaseAge": 4320,
|
|
185
|
+
"minimumReleaseAgeExclude": [
|
|
186
|
+
"esbuild",
|
|
187
|
+
"vite"
|
|
188
|
+
],
|
|
185
189
|
"overrides": {
|
|
186
|
-
"
|
|
190
|
+
"esbuild@>=0.27.3 <0.28.1": "^0.28.1",
|
|
191
|
+
"postcss@<8.5.18": "^8.5.18",
|
|
192
|
+
"vite@>=7.0.0 <=7.3.4": "^7.3.5",
|
|
187
193
|
"ws@>=8.0.0 <8.21.0": "^8.21.0"
|
|
188
194
|
}
|
|
189
195
|
},
|