Ver código fonte

chore: generate

opencode-agent[bot] 2 meses atrás
pai
commit
1c25b2f298
1 arquivos alterados com 8 adições e 2 exclusões
  1. 8 2
      packages/stats/app/src/routes/[lab]/[model].tsx

+ 8 - 2
packages/stats/app/src/routes/[lab]/[model].tsx

@@ -884,8 +884,14 @@ function ModelEfficiencySection(props: { data: StatsModelData | null; catalog: M
             <div data-slot="model-efficiency-pattern" aria-hidden="true" />
             <div data-component="model-efficiency-grid">
               <MetricCard label={i18n.t("model.totalSpendLabel")} value={formatMoney(data().totals.cost)} />
-              <MetricCard label={i18n.t("model.costInput")} value={formatCatalogUnitPrice(props.catalog?.cost?.input)} />
-              <MetricCard label={i18n.t("model.costOutput")} value={formatCatalogUnitPrice(props.catalog?.cost?.output)} />
+              <MetricCard
+                label={i18n.t("model.costInput")}
+                value={formatCatalogUnitPrice(props.catalog?.cost?.input)}
+              />
+              <MetricCard
+                label={i18n.t("model.costOutput")}
+                value={formatCatalogUnitPrice(props.catalog?.cost?.output)}
+              />
               <MetricCard
                 label={i18n.t("model.averageCostSession")}
                 value={formatSessionCost(data().totals.costPerSession)}