tokmon 0.11.2 → 0.11.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +3 -3
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -1092,7 +1092,7 @@ function SummaryRow({ label, summary }) {
|
|
|
1092
1092
|
}
|
|
1093
1093
|
function TableView({ rows: allRows, cursor, expanded, maxRows, cols, onRowClick }) {
|
|
1094
1094
|
const wide = cols > 90;
|
|
1095
|
-
const base = wide ? { label: 12, input: 10, output: 10, cc:
|
|
1095
|
+
const base = wide ? { label: 12, input: 10, output: 10, cc: 14, cr: 12, total: 11, cost: 13 } : { label: 8, input: 7, output: 7, cc: 7, cr: 8, total: 0, cost: 11 };
|
|
1096
1096
|
const fixed = base.label + base.input + base.output + base.cc + base.cr + base.total + base.cost;
|
|
1097
1097
|
const minModels = wide ? 22 : 14;
|
|
1098
1098
|
const available = cols - fixed - 6;
|
|
@@ -1118,8 +1118,8 @@ function TableView({ rows: allRows, cursor, expanded, maxRows, cols, onRowClick
|
|
|
1118
1118
|
/* @__PURE__ */ jsx(Text, { bold: true, children: col("Models", W.models, "left") }),
|
|
1119
1119
|
/* @__PURE__ */ jsx(Text, { bold: true, children: col("Input", W.input) }),
|
|
1120
1120
|
/* @__PURE__ */ jsx(Text, { bold: true, children: col("Output", W.output) }),
|
|
1121
|
-
/* @__PURE__ */ jsx(Text, { bold: true, children: col("CchCrt", W.cc) }),
|
|
1122
|
-
/* @__PURE__ */ jsx(Text, { bold: true, children: col("CchRd", W.cr) }),
|
|
1121
|
+
/* @__PURE__ */ jsx(Text, { bold: true, children: col(wide ? "Cache Create" : "CchCrt", W.cc) }),
|
|
1122
|
+
/* @__PURE__ */ jsx(Text, { bold: true, children: col(wide ? "Cache Read" : "CchRd", W.cr) }),
|
|
1123
1123
|
W.total > 0 && /* @__PURE__ */ jsx(Text, { bold: true, children: col("Total", W.total) }),
|
|
1124
1124
|
/* @__PURE__ */ jsx(Text, { bold: true, children: col("Cost", W.cost) })
|
|
1125
1125
|
] }),
|