From ed73cfdcc79883f477b1a50fbba792d0071ccf52 Mon Sep 17 00:00:00 2001 From: jxxghp Date: Tue, 18 Nov 2025 12:43:27 +0800 Subject: [PATCH] fix: update message formatting in MoviePilotTool for clarity - Changed the tool message format to use "=>" instead of wrapping with separators, enhancing readability and user experience during tool execution. --- app/agent/tools/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/agent/tools/base.py b/app/agent/tools/base.py index df588fcd..bbcba03e 100644 --- a/app/agent/tools/base.py +++ b/app/agent/tools/base.py @@ -47,7 +47,7 @@ class MoviePilotTool(BaseTool, metaclass=ABCMeta): tool_message = explanation if tool_message: - formatted_message = f"⚙️ {tool_message} ⚙️" + formatted_message = f"⚙️ => {tool_message}" await self.send_tool_message(formatted_message) return await self.run(**kwargs)