@agentv/core 4.24.0 → 4.24.1-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/{chunk-CUVG5O5P.js → chunk-SJ5SN7RJ.js} +4 -4
- package/dist/{chunk-CUVG5O5P.js.map → chunk-SJ5SN7RJ.js.map} +1 -1
- package/dist/index.cjs +2 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -4
- package/dist/index.js.map +1 -1
- package/dist/{ts-eval-loader-SYQYQPMC.js → ts-eval-loader-F7Y5QBKH.js} +2 -2
- package/package.json +1 -1
- /package/dist/{ts-eval-loader-SYQYQPMC.js.map → ts-eval-loader-F7Y5QBKH.js.map} +0 -0
package/dist/index.cjs
CHANGED
|
@@ -3305,7 +3305,7 @@ function parseInlineRubrics(rawRubrics) {
|
|
|
3305
3305
|
return void 0;
|
|
3306
3306
|
}
|
|
3307
3307
|
return {
|
|
3308
|
-
name: "
|
|
3308
|
+
name: "rubrics",
|
|
3309
3309
|
type: "llm-grader",
|
|
3310
3310
|
rubrics: rubricItems
|
|
3311
3311
|
};
|
|
@@ -26215,8 +26215,6 @@ var RunBudgetTracker = class {
|
|
|
26215
26215
|
// src/evaluation/hooks.ts
|
|
26216
26216
|
init_cjs_shims();
|
|
26217
26217
|
var import_node_child_process13 = require("child_process");
|
|
26218
|
-
var ANSI_YELLOW9 = "\x1B[33m";
|
|
26219
|
-
var ANSI_RESET10 = "\x1B[0m";
|
|
26220
26218
|
function parseEnvOutput(stdout) {
|
|
26221
26219
|
const result = {};
|
|
26222
26220
|
for (const line of stdout.split("\n")) {
|
|
@@ -26239,7 +26237,7 @@ function runBeforeSessionHook(command) {
|
|
|
26239
26237
|
const isWindows = process.platform === "win32";
|
|
26240
26238
|
const shell = isWindows ? "cmd" : "sh";
|
|
26241
26239
|
const shellFlag = isWindows ? "/c" : "-c";
|
|
26242
|
-
console.log(
|
|
26240
|
+
console.log(`Running before_session hook: ${command}`);
|
|
26243
26241
|
const result = (0, import_node_child_process13.spawnSync)(shell, [shellFlag, command], {
|
|
26244
26242
|
encoding: "utf8",
|
|
26245
26243
|
// Do not inherit stdio — capture stdout for parsing, forward stderr manually
|