Skip to content

Commit 34624ba

Browse files
jsonbaileyclaude
andcommitted
chore: skip tracking judge results that were not sampled
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 4bb3e78 commit 34624ba

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

packages/sdk/server-ai/src/ldai/managed_model.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,8 @@ def _track_judge_results(
7575
async def _run_and_track(eval_task: asyncio.Task) -> List[JudgeResult]:
7676
results = await eval_task
7777
for r in results:
78+
if not r.sampled:
79+
continue
7880
if r.success:
7981
try:
8082
tracker.track_judge_result(r)

0 commit comments

Comments
 (0)