minimax-status 1.1.5 → 1.1.6
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/cli/renderer.js +1 -1
- package/package.json +1 -1
package/cli/renderer.js
CHANGED
|
@@ -104,7 +104,7 @@ class Renderer {
|
|
|
104
104
|
if (contextUsage !== null && contextUsage !== undefined) {
|
|
105
105
|
const contextPercent = Math.round((contextUsage / contextSize) * 100);
|
|
106
106
|
const contextColor = this.getStatusColor(contextPercent);
|
|
107
|
-
parts.push(`${contextColor(contextPercent + '%')} ${
|
|
107
|
+
parts.push(`${contextColor(contextPercent + '%')} ${contextColor('·')} ${contextColor(this.formatTokens(contextUsage) + ' tokens')}`);
|
|
108
108
|
} else {
|
|
109
109
|
parts.push(chalk.cyan(this.formatContextSize(contextSize)));
|
|
110
110
|
}
|