From 45d132d098a5408bc2c37f79b958bff749263a8b Mon Sep 17 00:00:00 2001 From: teknium1 Date: Mon, 2 Mar 2026 00:32:06 -0800 Subject: [PATCH] fix(agent): remove preview truncation in assistant message output Updated the AIAgent class to print the full content of assistant messages without truncation, enhancing visibility of the messages during runtime. This change improves the clarity of communication from the agent. --- run_agent.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/run_agent.py b/run_agent.py index ca155f60..40c3eae1 100644 --- a/run_agent.py +++ b/run_agent.py @@ -3577,8 +3577,7 @@ class AIAgent: if self.quiet_mode: clean = self._strip_think_blocks(turn_content).strip() if clean: - preview = clean[:120] + "..." if len(clean) > 120 else clean - print(f" ┊ 💬 {preview}") + print(f" ┊ 💬 {clean}") messages.append(assistant_msg) self._log_msg_to_db(assistant_msg)