mirror of
https://github.com/blackboxprogramming/lucidia.git
synced 2026-03-17 06:57:10 -05:00
7 lines
213 B
Python
7 lines
213 B
Python
"""Reward model for encouraging love and helpfulness."""
|
|
|
|
|
|
def score(prompt, completion):
|
|
"""Score a completion based on love/helpfulness."""
|
|
raise NotImplementedError("Love reward model not implemented")
|