Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`

Expand Down
2 changes: 1 addition & 1 deletion mallm/decision_protocols/judge.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion mallm/utils/dicts.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"cumulative_voting": CumulativeVoting,
"ranked_voting": RankedVoting,
"consensus_voting": ConsensusVoting,
"summary": Judge,
"judge": Judge,
}

DISCUSSION_PARADIGMS: dict[str, type[DiscussionParadigm]] = {
Expand Down