File tree Expand file tree Collapse file tree
packages/optimization/src/ldai_optimization Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -357,7 +357,6 @@ def _parse_judge_response(
357357 )
358358 return JudgeResult (score = 0.0 , rationale = None )
359359
360-
361360 async def _call_judges (
362361 self ,
363362 completion_response : str ,
@@ -1929,7 +1928,9 @@ def _commit_variation(
19291928 model_name = optimize_context .current_model or ""
19301929 model_config_key = model_name # fallback if lookup fails
19311930 try :
1932- configs_to_search = model_configs if model_configs is not None else api_client .get_model_configs (project_key )
1931+ configs_to_search = (
1932+ model_configs if model_configs is not None else api_client .get_model_configs (project_key )
1933+ )
19331934 match = _find_model_config (model_name , configs_to_search )
19341935 if match :
19351936 model_config_key = match ["key" ]
You can’t perform that action at this time.
0 commit comments