@agentv/core 4.24.0-next.1 → 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/index.cjs CHANGED
@@ -3305,7 +3305,7 @@ function parseInlineRubrics(rawRubrics) {
3305
3305
  return void 0;
3306
3306
  }
3307
3307
  return {
3308
- name: "rubric",
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(`${ANSI_YELLOW9}Running before_session hook: ${command}${ANSI_RESET10}`);
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