You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: skills/analysis/home-security-benchmark/scripts/generate-report.cjs
+29-1Lines changed: 29 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -620,7 +620,35 @@ function renderQuality() {
620
620
621
621
// Multi-run comparison
622
622
if (sel.length > 1) {
623
-
html += '<div class="section-title">Quality Comparison</div>';
623
+
// High-level summary comparison
624
+
html += '<div class="section-title">Overall Comparison</div>';
625
+
html += '<div class="table-wrap"><table class="compare-table"><thead><tr><th>Metric</th>';
626
+
for (const r of sel) html += '<th class="model-col">' + esc(modelShort(r.model)) + '<br><span style="font-weight:400;font-size:0.68rem">' + shortDate(r.timestamp) + '</span></th>';
0 commit comments