Parcourir la source

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

Signed-off-by: -LAN- <laipz8200@outlook.com>
-LAN- il y a 4 mois
Parent
commit
223a30401c
1 fichiers modifiés avec 0 ajouts et 1 suppressions
  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,