diff --git a/README.md b/README.md index 655bc72..a1d93a6 100644 --- a/README.md +++ b/README.md @@ -134,7 +134,7 @@ judge_always_intervene: bool = False ### Discussion Parameters: Response Generators: `critical`, `freetext`, `reasoning`, `simple`, `splitfreetext` -Decision Protocols: `approval_voting`, `consensus_voting`, `cumulative_voting`, `hybrid_consensus`, `majority_consensus`, `ranked_voting`, `simple_voting`, `summary`, `supermajority_consensus`, `unanimity_consensus` +Decision Protocols: `approval_voting`, `consensus_voting`, `cumulative_voting`, `hybrid_consensus`, `judge`, `majority_consensus`, `ranked_voting`, `simple_voting`, `supermajority_consensus`, `unanimity_consensus` Persona Generators: `expert`, `ipip`, `mock`, `nopersona` diff --git a/mallm/decision_protocols/judge.py b/mallm/decision_protocols/judge.py index 4e74d03..8ccf61c 100644 --- a/mallm/decision_protocols/judge.py +++ b/mallm/decision_protocols/judge.py @@ -16,7 +16,7 @@ class Judge(DecisionProtocol): The Judge decision protocol creates a summary of all answers after a certain number of turns. """ - _name = "summary" + _name = "judge" def __init__( self, diff --git a/mallm/utils/dicts.py b/mallm/utils/dicts.py index 3bdcfef..3123d02 100644 --- a/mallm/utils/dicts.py +++ b/mallm/utils/dicts.py @@ -43,7 +43,7 @@ "cumulative_voting": CumulativeVoting, "ranked_voting": RankedVoting, "consensus_voting": ConsensusVoting, - "summary": Judge, + "judge": Judge, } DISCUSSION_PARADIGMS: dict[str, type[DiscussionParadigm]] = {