feat: add parameter preprocessing audit trail

This commit is contained in:
2026-05-12 13:54:51 +08:00
parent 9ea83be718
commit b9c9f457e9
17 changed files with 2323 additions and 28 deletions
+3
View File
@@ -243,6 +243,9 @@ func summarizeAttempts(attempts []store.TaskAttempt) []map[string]any {
if trace, ok := attempt.Metrics["trace"]; ok {
item["trace"] = trace
}
if preprocessing, ok := attempt.Metrics["parameterPreprocessingSummary"]; ok {
item["parameterPreprocessingSummary"] = preprocessing
}
items = append(items, item)
}
return items