fix(tui): hide cost in stats panel when zero

This commit is contained in:
0xallam
2026-01-08 12:21:18 -08:00
committed by Ahmed Allam
parent 3ec2609f6d
commit ae9719e648
+4 -3
View File
@@ -381,9 +381,10 @@ def build_tui_stats_text(tracer: Any, agent_config: dict[str, Any] | None = None
stats_text.append("Total Tokens: ", style="bold white")
stats_text.append(format_token_count(total_tokens), style="dim white")
stats_text.append("", style="dim white")
stats_text.append("Cost: ", style="bold white")
stats_text.append(f"${total_stats['cost']:.4f}", style="dim white")
if total_stats["cost"] > 0:
stats_text.append(" ", style="dim white")
stats_text.append("Cost: ", style="bold white")
stats_text.append(f"${total_stats['cost']:.4f}", style="dim white")
return stats_text