diff --git a/lucidia_llm/lucidia_rewards/consent_rm.py b/lucidia_llm/lucidia_rewards/consent_rm.py new file mode 100644 index 0000000..3ade626 --- /dev/null +++ b/lucidia_llm/lucidia_rewards/consent_rm.py @@ -0,0 +1,6 @@ +"""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")