diff --git a/app/components/evaluations/EvalRunCard.tsx b/app/components/evaluations/EvalRunCard.tsx
index 5a74da9..05c1093 100644
--- a/app/components/evaluations/EvalRunCard.tsx
+++ b/app/components/evaluations/EvalRunCard.tsx
@@ -91,6 +91,14 @@ export default function EvalRunCard({
>
)}
+ {job.cost.judge && (
+ <>
+ Judge scoring
+
+ {formatCostUSD(job.cost.judge.cost_usd)}
+
+ >
+ )}
{job.cost.embedding && (
<>
Cosine similarity calculation
diff --git a/app/lib/types/evaluation.ts b/app/lib/types/evaluation.ts
index 5b0eb7f..2e67b6f 100644
--- a/app/lib/types/evaluation.ts
+++ b/app/lib/types/evaluation.ts
@@ -119,6 +119,7 @@ export interface EvalCostEntry {
export interface EvalCost {
response?: EvalCostEntry;
+ judge?: EvalCostEntry;
embedding?: EvalCostEntry;
total_cost_usd: number;
}