Add lucidia_rewards/truth_rm.py with truthfulness reward model stub

This commit is contained in:
blackboxprogramming
2025-08-08 01:29:50 -07:00
committed by GitHub
parent 94f2bedc0c
commit 52d154e8c7

View File

@@ -0,0 +1,6 @@
"""Reward model for enforcing truthfulness."""
def score(prompt, completion):
"""Score a completion based on truthfulness."""
raise NotImplementedError("Truthfulness reward model not implemented")