v0.5.7: Fix tool counter spacing in metrics display
This commit is contained in:
@@ -68,7 +68,7 @@ export class ConsoleRenderer implements AgentEventReceiver {
|
||||
|
||||
// Add tool call count
|
||||
if (this.toolCallCount > 0) {
|
||||
metricsText += chalk.dim(` ⚒${this.toolCallCount}`);
|
||||
metricsText += chalk.dim(` ⚒ ${this.toolCallCount}`);
|
||||
}
|
||||
|
||||
console.log(metricsText);
|
||||
|
||||
@@ -305,7 +305,7 @@ export class TuiRenderer implements AgentEventReceiver {
|
||||
|
||||
// Add tool call count
|
||||
if (this.toolCallCount > 0) {
|
||||
tokenText += chalk.dim(` ⚒${this.toolCallCount}`);
|
||||
tokenText += chalk.dim(` ⚒ ${this.toolCallCount}`);
|
||||
}
|
||||
|
||||
this.tokenStatusComponent = new TextComponent(tokenText);
|
||||
|
||||
Reference in New Issue
Block a user