add(feedback): over-refusal / safety check (#11948)

Add new feedback option for "Over-refusal / safety check"
This commit is contained in:
Fouad Matin
2026-02-16 16:24:47 -08:00
committed by GitHub
parent 19afbc35c1
commit b37555dd75
5 changed files with 54 additions and 15 deletions

View File

@@ -279,7 +279,7 @@ impl CodexLogSnapshot {
}
let level = match classification {
"bug" | "bad_result" => Level::Error,
"bug" | "bad_result" | "safety_check" => Level::Error,
_ => Level::Info,
};
@@ -342,6 +342,7 @@ fn display_classification(classification: &str) -> String {
"bug" => "Bug".to_string(),
"bad_result" => "Bad result".to_string(),
"good_result" => "Good result".to_string(),
"safety_check" => "Safety check".to_string(),
_ => "Other".to_string(),
}
}