fix(workflow and tool): Output processing modification of tool nodes and error modification for tool tests

This commit is contained in:
Timebomb2018
2026-03-18 16:37:39 +08:00
parent 7e5e1609b0
commit 7bbfd33ca0
4 changed files with 13 additions and 16 deletions

View File

@@ -195,6 +195,6 @@ class MCPToolManager:
except Exception as e:
return {
"success": False,
"error": str(e),
"message": "连接失败"
"error": "连接失败",
"message": str(e)
}