mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-17 02:04:05 +00:00
v0.5.7: Fix tool counter spacing in metrics display
This commit is contained in:
parent
9fee306075
commit
832b20b173
9 changed files with 18 additions and 18 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue