From b819e871a473ab64e329e571904cfc1a9c570b90 Mon Sep 17 00:00:00 2001 From: Dita Aji Pratama Date: Tue, 19 May 2026 10:28:06 +0700 Subject: [PATCH] Change 'LLM...' to 'Thinking...' in step log message --- tui/agent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tui/agent.py b/tui/agent.py index 52af6b8..22fa9be 100644 --- a/tui/agent.py +++ b/tui/agent.py @@ -42,7 +42,7 @@ def submit(app, stdscr): for step in range(app.agent_max_iterations): stamp_step = ntro.start() - log(app, "system", f" step {step + 1} \u2014 LLM...") + log(app, "system", f" step {step + 1} \u2014 Thinking...") app.scroll = 999999 draw(app, stdscr) stdscr.refresh()