mirror of
https://github.com/blackboxprogramming/lucidia.git
synced 2026-03-17 08:57:17 -05:00
7 lines
207 B
Python
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")
|