Browse Source

fix: LLM invoke error should not be raised (#11141)

Signed-off-by: -LAN- <laipz8200@outlook.com>
-LAN- 4 months ago
parent
commit
223a30401c
1 changed files with 0 additions and 1 deletions
  1. 0 1
      api/core/workflow/nodes/llm/node.py

+ 0 - 1
api/core/workflow/nodes/llm/node.py

@@ -197,7 +197,6 @@ class LLMNode(BaseNode[LLMNodeData]):
             )
             return
         except Exception as e:
-            logger.exception(f"Node {self.node_id} failed to run")
             yield RunCompletedEvent(
                 run_result=NodeRunResult(
                     status=WorkflowNodeExecutionStatus.FAILED,