avoid serializing field: null + docs

This commit is contained in:
lda
2026-05-19 22:13:43 +07:00 Verified
parent 8a345883d1
commit ce2b1a498c
14 changed files with 484 additions and 21 deletions
+5
View File
@@ -33,6 +33,11 @@ def _resolve_node_execution(
frame = run.current_frame()
context_values = frame_context_values(frame)
resolved_input: dict[str, Any] = {}
for destination_field, value in node.input_values.items():
try:
set_local_value(resolved_input, destination_field, value)
except LocalPathError as exc:
raise WorkflowExecutionError(str(exc)) from exc
for source_path, destination_field in node.in_map.items():
value = safe_resolve_path(
source_path,