mirror of
https://github.com/blackboxprogramming/lucidia.git
synced 2026-03-17 03:57:13 -05:00
7 lines
217 B
Python
7 lines
217 B
Python
"""Reward model for enforcing consent and boundaries."""
|
|
|
|
|
|
def score(prompt, completion):
|
|
"""Score a completion based on consent adherence."""
|
|
raise NotImplementedError("Consent reward model not implemented")
|