Refactor agent workflows: streamline subscription and download processes, enhance query status workflow, and improve tool usage guidelines for better user interaction.

This commit is contained in:
jxxghp
2025-11-17 12:49:03 +08:00
parent c6806ee648
commit 42e23ef564
2 changed files with 25 additions and 109 deletions

View File

@@ -41,7 +41,7 @@ class MoviePilotTool(BaseTool, metaclass=ABCMeta):
# 发送执行工具说明
explanation = kwargs.get("explanation")
if explanation:
await self.send_tool_message(f"⏯️[{explanation}]")
await self.send_tool_message(f"▶️️{explanation}")
return await self.run(**kwargs)
@abstractmethod