@blockrun/runcode 1.6.4 → 1.6.5
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/commands/stats.js +1 -1
- package/package.json +1 -1
package/dist/commands/stats.js
CHANGED
|
@@ -37,7 +37,7 @@ export function statsCommand(options) {
|
|
|
37
37
|
console.log(chalk.bold('\n Overview') + chalk.gray(` (${period})\n`));
|
|
38
38
|
console.log(` Requests: ${chalk.cyan(stats.totalRequests.toLocaleString())}`);
|
|
39
39
|
console.log(` Total Cost: ${chalk.green('$' + stats.totalCostUsd.toFixed(4))}`);
|
|
40
|
-
console.log(` Avg per Request
|
|
40
|
+
console.log(` Avg per Request: ${chalk.gray('$' + avgCostPerRequest.toFixed(6))}`);
|
|
41
41
|
console.log(` Input Tokens: ${stats.totalInputTokens.toLocaleString()}`);
|
|
42
42
|
console.log(` Output Tokens: ${stats.totalOutputTokens.toLocaleString()}`);
|
|
43
43
|
if (stats.totalFallbacks > 0) {
|