Skip to content

Commit af29bbd

Browse files
authored
Merge pull request #152 from Multi-Agent-LLMs/debate-fix
summary renamed to judge
2 parents e7419a7 + 5476882 commit af29bbd

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ judge_always_intervene: bool = False
134134
### Discussion Parameters:
135135
Response Generators: `critical`, `freetext`, `reasoning`, `simple`, `splitfreetext`
136136

137-
Decision Protocols: `approval_voting`, `consensus_voting`, `cumulative_voting`, `hybrid_consensus`, `majority_consensus`, `ranked_voting`, `simple_voting`, `summary`, `supermajority_consensus`, `unanimity_consensus`
137+
Decision Protocols: `approval_voting`, `consensus_voting`, `cumulative_voting`, `hybrid_consensus`, `judge`, `majority_consensus`, `ranked_voting`, `simple_voting`, `supermajority_consensus`, `unanimity_consensus`
138138

139139
Persona Generators: `expert`, `ipip`, `mock`, `nopersona`
140140

mallm/decision_protocols/judge.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class Judge(DecisionProtocol):
1616
The Judge decision protocol creates a summary of all answers after a certain number of turns.
1717
"""
1818

19-
_name = "summary"
19+
_name = "judge"
2020

2121
def __init__(
2222
self,

mallm/utils/dicts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"cumulative_voting": CumulativeVoting,
4444
"ranked_voting": RankedVoting,
4545
"consensus_voting": ConsensusVoting,
46-
"summary": Judge,
46+
"judge": Judge,
4747
}
4848

4949
DISCUSSION_PARADIGMS: dict[str, type[DiscussionParadigm]] = {

0 commit comments

Comments
 (0)