fix(ci): isolate workflow evals, revert unrelated changes, and fix aggregation

This commit is contained in:
cocosheng-g
2026-02-03 23:04:50 -05:00
parent 9da1542071
commit fe50e580fa
2 changed files with 14 additions and 22 deletions

View File

@@ -38,6 +38,9 @@ function getModelFromPath(reportPath) {
const artifactDir = parts.find((p) => p.startsWith('eval-logs-'));
if (!artifactDir) return 'unknown';
const matchWorkflow = artifactDir.match(/^eval-logs-workflows-(.+)$/);
if (matchWorkflow) return `${matchWorkflow[1]} (Workflow)`;
const matchNew = artifactDir.match(/^eval-logs-(.+)-(\d+)$/);
if (matchNew) return matchNew[1];