mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-08-12 17:29:04 +08:00
fix: workflow trace none type error (#5758)
This commit is contained in:
parent
f101fcd0e7
commit
ffb07eb24b
@ -121,7 +121,9 @@ class LangFuseDataTrace(BaseTraceInstance):
|
||||
node_type = node_execution.node_type
|
||||
status = node_execution.status
|
||||
if node_type == "llm":
|
||||
inputs = json.loads(node_execution.process_data).get("prompts", {})
|
||||
inputs = json.loads(node_execution.process_data).get(
|
||||
"prompts", {}
|
||||
) if node_execution.process_data else {}
|
||||
else:
|
||||
inputs = json.loads(node_execution.inputs) if node_execution.inputs else {}
|
||||
outputs = (
|
||||
|
@ -114,7 +114,9 @@ class LangSmithDataTrace(BaseTraceInstance):
|
||||
node_type = node_execution.node_type
|
||||
status = node_execution.status
|
||||
if node_type == "llm":
|
||||
inputs = json.loads(node_execution.process_data).get("prompts", {})
|
||||
inputs = json.loads(node_execution.process_data).get(
|
||||
"prompts", {}
|
||||
) if node_execution.process_data else {}
|
||||
else:
|
||||
inputs = json.loads(node_execution.inputs) if node_execution.inputs else {}
|
||||
outputs = (
|
||||
|
Loading…
x
Reference in New Issue
Block a user