@tangle-network/agent-eval 0.29.1 → 0.30.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/index.d.ts +147 -1
- package/dist/index.js +219 -12
- package/dist/index.js.map +1 -1
- package/dist/openapi.json +1 -1
- package/package.json +21 -12
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.
|
|
5
|
+
"version": "0.30.0",
|
|
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.
|
|
3
|
+
"version": "0.30.0",
|
|
4
4
|
"description": "Substrate for self-improving agents: traces, verifiable rewards, preferences, GEPA / reflective mutation, auto-research, replay, sequential anytime-valid stats, and release gates.",
|
|
5
5
|
"homepage": "https://github.com/tangle-network/agent-eval#readme",
|
|
6
6
|
"repository": {
|
|
@@ -109,6 +109,17 @@
|
|
|
109
109
|
"publishConfig": {
|
|
110
110
|
"access": "public"
|
|
111
111
|
},
|
|
112
|
+
"scripts": {
|
|
113
|
+
"build": "tsup && pnpm openapi",
|
|
114
|
+
"dev": "tsup --watch",
|
|
115
|
+
"prepare": "pnpm build",
|
|
116
|
+
"test": "vitest run",
|
|
117
|
+
"test:watch": "vitest",
|
|
118
|
+
"typecheck": "tsc --noEmit",
|
|
119
|
+
"lint": "biome check src",
|
|
120
|
+
"format": "biome format --write src",
|
|
121
|
+
"openapi": "node dist/cli.js openapi --out dist/openapi.json"
|
|
122
|
+
},
|
|
112
123
|
"dependencies": {
|
|
113
124
|
"@asteasolutions/zod-to-openapi": "^8.5.0",
|
|
114
125
|
"@ax-llm/ax": "^19.0.25",
|
|
@@ -125,18 +136,16 @@
|
|
|
125
136
|
"typescript": "^5.7.0",
|
|
126
137
|
"vitest": "^3.0.0"
|
|
127
138
|
},
|
|
139
|
+
"pnpm": {
|
|
140
|
+
"minimumReleaseAge": 4320,
|
|
141
|
+
"minimumReleaseAgeExclude": [],
|
|
142
|
+
"overrides": {
|
|
143
|
+
"postcss@<8.5.10": "^8.5.10"
|
|
144
|
+
}
|
|
145
|
+
},
|
|
128
146
|
"engines": {
|
|
129
147
|
"node": ">=20"
|
|
130
148
|
},
|
|
131
149
|
"license": "MIT",
|
|
132
|
-
"
|
|
133
|
-
|
|
134
|
-
"dev": "tsup --watch",
|
|
135
|
-
"test": "vitest run",
|
|
136
|
-
"test:watch": "vitest",
|
|
137
|
-
"typecheck": "tsc --noEmit",
|
|
138
|
-
"lint": "biome check src",
|
|
139
|
-
"format": "biome format --write src",
|
|
140
|
-
"openapi": "node dist/cli.js openapi --out dist/openapi.json"
|
|
141
|
-
}
|
|
142
|
-
}
|
|
150
|
+
"packageManager": "pnpm@10.22.0"
|
|
151
|
+
}
|