Skip to content

Commit cca8ce3

Browse files
MaxGhenisclaude
andauthored
Spell out cost label as "per household" on the leaderboard (#117)
"/hh" read as jargon; the column header, mobile cost line, and latency tooltip now all say "per household". Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
1 parent 8f3c44c commit cca8ce3

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

app/src/components/ModelLeaderboard.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ export default function ModelLeaderboard({
304304
className="col-span-2 text-right"
305305
title="Estimated cost to run one household's full set of outputs, no tools (batch runs priced at standard synchronous rates)"
306306
>
307-
Cost / hh
307+
Cost / household
308308
</div>
309309
<div role="columnheader" className="col-span-2 text-right">
310310
{scoringMode === "exact"
@@ -357,7 +357,7 @@ export default function ModelLeaderboard({
357357
</Link>
358358
</div>
359359
<div className="mt-1.5 pl-[26px] font-[family-name:var(--font-mono)] text-[11px] text-text-muted">
360-
{fmtCost(m.costPerHousehold, currencySymbol)}/hh
360+
{fmtCost(m.costPerHousehold, currencySymbol)} per household
361361
</div>
362362
</div>
363363

@@ -395,7 +395,7 @@ export default function ModelLeaderboard({
395395
className="col-span-2 text-right font-[family-name:var(--font-mono)] text-sm text-text-secondary"
396396
title={
397397
m.costUsd != null
398-
? `${currencySymbol}${m.costUsd.toFixed(2)} total · ${fmtCost(m.costPerHousehold, currencySymbol)}/household`
398+
? `${currencySymbol}${m.costUsd.toFixed(2)} total · ${fmtCost(m.costPerHousehold, currencySymbol)} per household`
399399
: "Cost not recorded for this model"
400400
}
401401
>

0 commit comments

Comments
 (0)