@wayai/cli 0.3.49 → 0.3.50

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.js CHANGED
@@ -11990,6 +11990,12 @@ async function showRunDetails(client, hubId, sessionId, evalNameFilter, jsonOutp
11990
11990
  const scoresStr = Object.entries(run.scores).map(([key, val]) => `${key}: ${Math.round(val * 100)}%`).join(", ");
11991
11991
  console.log(` Scores: ${scoresStr}`);
11992
11992
  }
11993
+ const obsParts = [];
11994
+ if (run.response_message_id) obsParts.push(`evaluated=${run.response_message_id}`);
11995
+ if (run.evaluator_message_id) obsParts.push(`evaluator=${run.evaluator_message_id}`);
11996
+ if (obsParts.length > 0 && run.conversation_id) {
11997
+ console.log(` Observability: conversation=${run.conversation_id} ${obsParts.join(" ")}`);
11998
+ }
11993
11999
  console.log("");
11994
12000
  }
11995
12001
  if (!anyComment) {