fix: Add missing WorkflowNode import in workflow_executor
All checks were successful
Deploy Development / deploy (push) Successful in 49s
Build Test / pytest-backend (push) Successful in 4s
Build Test / lint-backend (push) Successful in 0s
Build Test / build-frontend (push) Successful in 15s

Import war vergessen nach Umstellung von load_prompt_template() auf WorkflowNode Parameter.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Lars 2026-04-11 08:47:45 +02:00
parent a1723db387
commit 65500c899b

View File

@ -18,7 +18,7 @@ import json
from jinja2 import Environment, ChainableUndefined, TemplateError from jinja2 import Environment, ChainableUndefined, TemplateError
from workflow_models import ( from workflow_models import (
WorkflowGraph, NodeExecutionState, ExecutionResult, WorkflowGraph, WorkflowNode, NodeExecutionState, ExecutionResult,
NodeStatus, NormalizedSignal, FallbackStrategy, SignalStatus, NodeStatus, NormalizedSignal, FallbackStrategy, SignalStatus,
EndNodeOutputMode EndNodeOutputMode
) )