File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -228,15 +228,15 @@ def track_judge_response(self, judge_response: Any) -> None:
228228
229229 :param judge_response: JudgeResponse object containing evals and success status
230230 """
231- from ldai .providers .types import JudgeResponse , EvalScore
231+ from ldai .providers .types import EvalScore , JudgeResponse
232232
233233 if isinstance (judge_response , JudgeResponse ):
234234 # Track evaluation scores with judge config key included in metadata
235235 if judge_response .evals :
236236 track_data = self .__get_track_data ()
237237 if judge_response .judge_config_key :
238238 track_data = {** track_data , 'judgeConfigKey' : judge_response .judge_config_key }
239-
239+
240240 for metric_key , eval_score in judge_response .evals .items ():
241241 if isinstance (eval_score , EvalScore ):
242242 self ._ld_client .track (
You can’t perform that action at this time.
0 commit comments