Skip to content

Commit a0cc11f

Browse files
fix lint
1 parent 9044da9 commit a0cc11f

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

evalbench/scorers/trajectorymatcher.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,11 @@
77
from typing import Tuple, Any
88
from scorers import comparator
99

10+
1011
class TrajectoryMatcher(comparator.Comparator):
1112
"""
1213
TrajectoryMatcher class implements the Comparator base class for checking tool execution trajectories.
13-
14+
1415
It checks if the sequence of executed tools matches the expected trajectory.
1516
"""
1617

@@ -35,11 +36,11 @@ def compare(
3536
) -> Tuple[float, str]:
3637
"""
3738
Compares expected trajectory (golden) with actual executed tools (generated).
38-
39+
3940
Args:
4041
golden_execution_result: List of expected tool names (strings).
4142
generated_execution_result: List of actually executed tool names (strings).
42-
43+
4344
Returns:
4445
Tuple (score, explanation)
4546
"""

0 commit comments

Comments
 (0)