support testing malicious prompts with no guidelines

This commit is contained in:
Adam Wilson
2025-06-28 12:18:35 -06:00
parent 036d36bf4f
commit cb1be6746f
18 changed files with 447 additions and 76 deletions
+3
View File
@@ -0,0 +1,3 @@
class Average:
def from_list_of_floats(self, floats: list[float]) -> float:
return sum(floats) / len(floats)