1 parent 510fe7f commit e7af888Copy full SHA for e7af888
1 file changed
python_agent_harness/agent.py
@@ -381,6 +381,10 @@ def _run_tools(
381
"Error: tool call cancelled (user aborted the run)."
382
)
383
continue
384
+ # Notify the TUI which tool is currently executing so the
385
+ # status bar can show the active tool name beside the spinner.
386
+ if self.top_level:
387
+ self.session.notify("tool_running", p.name)
388
try:
389
result = self._execute_tool_call(p)
390
except Exception as e: # noqa: BLE001 - containment boundary
0 commit comments