Files
lucidia-main/lucidia_llm/lucidia_rewards/truth_rm.py

7 lines
207 B
Python

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