bug fix und Debug Workflow #83

Merged
Lars merged 10 commits from develop into main 2026-04-13 18:15:07 +02:00
3 changed files with 2 additions and 7 deletions
Showing only changes of commit b7062d32bf - Show all commits

View File

@ -166,13 +166,10 @@ async def execute_workflow(
enable_debug=enable_debug
)
# Add human-readable label and name to node_state for debug UI
# Add human-readable label to node_state for debug UI
node_label = node.prompt_slug if hasattr(node, 'prompt_slug') and node.prompt_slug else f"{node.type.value}-{node_id[:8]}"
if not node_state.debug_prompt_slug:
node_state.debug_prompt_slug = node_label
# Set node_name from graph (user-defined name in editor)
if not node_state.node_name and hasattr(node, 'name'):
node_state.node_name = node.name
node_states.append(node_state)
context["node_results"][node_id] = node_state

View File

@ -196,7 +196,6 @@ class WorkflowNode(BaseModel):
"""
id: str = Field(..., description="Eindeutige Knoten-ID")
type: NodeType = Field(..., description="Knotentyp")
name: Optional[str] = Field(None, description="Node-Name (vom Editor)")
position: Optional[Position] = Field(None, description="Position im visuellen Editor")
# ANALYSIS-Knoten
@ -342,7 +341,6 @@ class NodeExecutionState(BaseModel):
Erweitert NodeState um Phase-1-Komponenten (analysis_core, decision_signals, etc.)
"""
node_id: str = Field(..., description="Knoten-ID")
node_name: Optional[str] = Field(None, description="Node-Name aus Workflow-Editor")
status: NodeStatus = Field(..., description="Ausführungsstatus")
# Phase 1 Result Container

View File

@ -226,7 +226,7 @@ export function WorkflowResultViewer({ result, onClose }) {
{(node.debug_node_type || node.node_type) === 'join' && '🔀'}
{(node.debug_node_type || node.node_type) === 'end' && '🏁'}
{' '}
{node.node_name || node.debug_prompt_slug || node.node_label || node.node_id}
{node.debug_prompt_slug || node.node_label || ((node.debug_node_type || node.node_type) ? `${node.debug_node_type || node.node_type}-${node.node_id.substring(0, 8)}` : node.node_id)}
{node.status === 'skipped' && (
<span style={{ color: 'var(--text3)', marginLeft: '8px' }}>
(skipped)