Skip to content

deepplanning_scorer

deepplanning_scorer

LLM-judge scorer for DeepPlanning constraint satisfaction.

Classes

DeepPlanningScorer

DeepPlanningScorer(judge_backend: InferenceBackend, judge_model: str)

Bases: LLMJudgeScorer

Score DeepPlanning responses via LLM judge on constraint satisfaction.

Source code in src/openjarvis/evals/core/scorer.py
def __init__(self, judge_backend: InferenceBackend, judge_model: str) -> None:
    self._judge_backend = judge_backend
    self._judge_model = judge_model