feat(compare): show self-correction counts in context section

This commit is contained in:
iamtoruk 2026-04-19 06:47:43 -07:00 committed by AgentSeal
parent e0d8ecddd9
commit 2a9ecab05c

View file

@ -143,6 +143,7 @@ function ComparisonResults({ modelA, modelB, rows, onBack }: ComparisonResultsPr
{ label: 'Total cost', valueA: formatCost(modelA.cost), valueB: formatCost(modelB.cost) },
{ label: 'Days of data', valueA: String(daysOfData(modelA.firstSeen, modelA.lastSeen)), valueB: String(daysOfData(modelB.firstSeen, modelB.lastSeen)) },
{ label: 'Edit turns', valueA: modelA.editTurns.toLocaleString(), valueB: modelB.editTurns.toLocaleString() },
{ label: 'Self-corrections', valueA: modelA.selfCorrections.toLocaleString(), valueB: modelB.selfCorrections.toLocaleString() },
]
return (