Source code for llmp.components.human_verification
from llmp.components.base import BaseHumanVerification
[docs]class HumanVerification(BaseHumanVerification):
[docs] def verify(self, job_id, generated_example):
"""Manually verify a generated example for a specific job."""
# Implementation here
pass