in src/epam/auto_llm_eval/evaluator.py [0:0]
def get_score(self) -> int:
"""
Return the score with the maximum probability.
Returns:
int: The score (1-5) with the highest probability.
"""
(score, _) = max(self.probabilities, key=lambda x: x[1])
return score