@agentv/core 4.15.8-next.1 → 4.15.9-next.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/dist/evaluation/validation/index.cjs +295 -50
- package/dist/evaluation/validation/index.cjs.map +1 -1
- package/dist/evaluation/validation/index.d.cts +29 -2
- package/dist/evaluation/validation/index.d.ts +29 -2
- package/dist/evaluation/validation/index.js +276 -33
- package/dist/evaluation/validation/index.js.map +1 -1
- package/dist/index.cjs +4 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -11173,8 +11173,9 @@ var VSCodeProvider = class {
|
|
|
11173
11173
|
}
|
|
11174
11174
|
if (this.config.dryRun) {
|
|
11175
11175
|
return {
|
|
11176
|
-
output: [],
|
|
11176
|
+
output: [{ role: "assistant", content: "{}" }],
|
|
11177
11177
|
durationMs,
|
|
11178
|
+
tokenUsage: { input: 0, output: 0 },
|
|
11178
11179
|
raw: {
|
|
11179
11180
|
session,
|
|
11180
11181
|
inputFiles
|
|
@@ -11230,8 +11231,9 @@ var VSCodeProvider = class {
|
|
|
11230
11231
|
}
|
|
11231
11232
|
if (this.config.dryRun) {
|
|
11232
11233
|
return normalizedRequests.map(({ inputFiles }) => ({
|
|
11233
|
-
output: [],
|
|
11234
|
+
output: [{ role: "assistant", content: "{}" }],
|
|
11234
11235
|
durationMs: perRequestDurationMs,
|
|
11236
|
+
tokenUsage: { input: 0, output: 0 },
|
|
11235
11237
|
raw: {
|
|
11236
11238
|
session,
|
|
11237
11239
|
inputFiles,
|