diff --git a/crates/g3-cli/src/ui_writer_impl.rs b/crates/g3-cli/src/ui_writer_impl.rs index d7f6e2e..eabbab3 100644 --- a/crates/g3-cli/src/ui_writer_impl.rs +++ b/crates/g3-cli/src/ui_writer_impl.rs @@ -251,7 +251,7 @@ impl UiWriter for ConsoleUiWriter { "" }; - println!("└─ ⚡️ {}{}\x1b[0m \x1b[2m{}tk | {:.0}% ctx\x1b[0m", color_code, duration_str, tokens_delta, context_percentage); + println!("└─ ⚡️ {}{}\x1b[0m \x1b[2m{} ◉ | {:.0}%\x1b[0m", color_code, duration_str, tokens_delta, context_percentage); println!(); // Clear the stored tool info *self.current_tool_name.lock().unwrap() = None; diff --git a/crates/g3-core/src/lib.rs b/crates/g3-core/src/lib.rs index 5f4f2df..7db96dd 100644 --- a/crates/g3-core/src/lib.rs +++ b/crates/g3-core/src/lib.rs @@ -6583,9 +6583,9 @@ impl Agent { // Add token usage info if available (dimmed) if let Some(tokens) = turn_tokens { - format!("{} \x1b[2m{}tk | {:.0}% ctx\x1b[0m", timing, tokens, context_percentage) + format!("{} \x1b[2m{} ◉ | {:.0}%\x1b[0m", timing, tokens, context_percentage) } else { - format!("{} \x1b[2m{:.0}% ctx\x1b[0m", timing, context_percentage) + format!("{} \x1b[2m{:.0}%\x1b[0m", timing, context_percentage) } } }