summaryrefslogtreecommitdiff
path: root/frontend/src/store/flowStore.ts
blob: 0c90357ce07689aebb0f9c62f67f949c5581dc2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
import { create } from 'zustand';
import { 
  addEdge, 
  applyNodeChanges,
  applyEdgeChanges,
  type Connection, 
  type Edge, 
  type EdgeChange, 
  type Node, 
  type NodeChange, 
  type OnNodesChange, 
  type OnEdgesChange, 
  type OnConnect,
  getIncomers,
  getOutgoers
} from 'reactflow';

export type NodeStatus = 'idle' | 'loading' | 'success' | 'error';

export interface Message {
  id?: string;
  role: 'user' | 'assistant' | 'system';
  content: string;
}

export interface Trace {
  id: string;
  sourceNodeId: string;
  color: string;
  messages: Message[];
}

export interface NodeData {
  label: string;
  model: string;
  temperature: number;
  apiKey?: string;
  systemPrompt: string;
  userPrompt: string;
  mergeStrategy: 'raw' | 'smart';
  enableGoogleSearch?: boolean;
  reasoningEffort: 'low' | 'medium' | 'high';  // For OpenAI reasoning models
  disabled?: boolean;  // Greyed out, no interaction
  
  // Traces logic
  traces: Trace[];          // INCOMING Traces
  outgoingTraces: Trace[];  // ALL Outgoing (inherited + self + forks)
  forkedTraces: Trace[];    // Manually created forks from "New" handle
  activeTraceIds: string[]; 
  
  response: string;    
  status: NodeStatus;
  inputs: number; 
  [key: string]: any;
}

export type LLMNode = Node<NodeData>;

// Archived node template (for reuse)
export interface ArchivedNode {
  id: string;
  label: string;
  model: string;
  systemPrompt: string;
  temperature: number;
  reasoningEffort: 'low' | 'medium' | 'high';
}

interface FlowState {
  nodes: LLMNode[];
  edges: Edge[];
  selectedNodeId: string | null;
  archivedNodes: ArchivedNode[];  // Stored node templates

  onNodesChange: OnNodesChange;
  onEdgesChange: OnEdgesChange;
  onConnect: OnConnect;
  
  addNode: (node: LLMNode) => void;
  updateNodeData: (nodeId: string, data: Partial<NodeData>) => void;
  setSelectedNode: (nodeId: string | null) => void;
  
  getActiveContext: (nodeId: string) => Message[]; 
  
  // Actions
  deleteEdge: (edgeId: string) => void;
  deleteNode: (nodeId: string) => void;
  deleteBranch: (startNodeId?: string, startEdgeId?: string) => void;
  
  // Archive actions
  toggleNodeDisabled: (nodeId: string) => void;
  archiveNode: (nodeId: string) => void;
  removeFromArchive: (archiveId: string) => void;
  createNodeFromArchive: (archiveId: string, position: { x: number; y: number }) => void;
  
  // Trace disable
  toggleTraceDisabled: (edgeId: string) => void;
  updateEdgeStyles: () => void;

  propagateTraces: () => void;
}

// Hash string to color
const getStableColor = (str: string) => {
  let hash = 0;
  for (let i = 0; i < str.length; i++) {
    hash = str.charCodeAt(i) + ((hash << 5) - hash);
  }
  const hue = Math.abs(hash % 360);
  return `hsl(${hue}, 70%, 60%)`; 
};

const useFlowStore = create<FlowState>((set, get) => ({
  nodes: [],
  edges: [],
  selectedNodeId: null,
  archivedNodes: [],

  onNodesChange: (changes: NodeChange[]) => {
    set({
      nodes: applyNodeChanges(changes, get().nodes) as LLMNode[],
    });
  },
  onEdgesChange: (changes: EdgeChange[]) => {
    set({
      edges: applyEdgeChanges(changes, get().edges),
    });
    get().propagateTraces();
  },
  onConnect: (connection: Connection) => {
    const { nodes } = get();
    
    // Check if connecting from "new-trace" handle
    if (connection.sourceHandle === 'new-trace') {
       // Logic: Create a new Forked Trace on the source node
       const sourceNode = nodes.find(n => n.id === connection.source);
       if (sourceNode) {
          // Generate the content for this new trace (it's essentially the Self Trace of this node)
          const myResponseMsg: Message[] = [];
          if (sourceNode.data.userPrompt) myResponseMsg.push({ id: `${sourceNode.id}-u`, role: 'user', content: sourceNode.data.userPrompt });
          if (sourceNode.data.response) myResponseMsg.push({ id: `${sourceNode.id}-a`, role: 'assistant', content: sourceNode.data.response });
          
          const newForkId = `trace-${sourceNode.id}-fork-${Date.now()}`;
          const newForkTrace: Trace = {
             id: newForkId,
             sourceNodeId: sourceNode.id,
             color: getStableColor(newForkId), // Unique color for this fork
             messages: [...myResponseMsg]
          };
          
          // Update Source Node to include this fork
          get().updateNodeData(sourceNode.id, {
             forkedTraces: [...(sourceNode.data.forkedTraces || []), newForkTrace]
          });
          
          // Redirect connection to the new handle
          // Note: We must wait for propagateTraces to render the new handle? 
          // ReactFlow might complain if handle doesn't exist yet.
          // But since we updateNodeData synchronously (mostly), it might work.
          // Let's use the new ID for the connection.
          
          set({
            edges: addEdge({ 
              ...connection, 
              sourceHandle: `trace-${newForkId}`, // Redirect!
              style: { stroke: newForkTrace.color, strokeWidth: 2 } 
            }, get().edges),
          });
          
          // Trigger propagation to update downstream
          setTimeout(() => get().propagateTraces(), 0);
          return;
       }
    }
    
    // Normal connection
    set({
      edges: addEdge({ 
        ...connection, 
        style: { stroke: '#888', strokeWidth: 2 } 
      }, get().edges),
    });
    setTimeout(() => get().propagateTraces(), 0);
  },

  addNode: (node: LLMNode) => {
    set((state) => ({ nodes: [...state.nodes, node] }));
    setTimeout(() => get().propagateTraces(), 0);
  },

  updateNodeData: (nodeId: string, data: Partial<NodeData>) => {
    set((state) => ({
      nodes: state.nodes.map((node) => {
        if (node.id === nodeId) {
          return { ...node, data: { ...node.data, ...data } };
        }
        return node;
      }),
    }));
    
    if (data.response !== undefined || data.userPrompt !== undefined) {
      get().propagateTraces();
    }
  },

  setSelectedNode: (nodeId: string | null) => {
    set({ selectedNodeId: nodeId });
  },

  getActiveContext: (nodeId: string) => {
    const node = get().nodes.find(n => n.id === nodeId);
    if (!node) return [];

    // The traces stored in node.data.traces are the INCOMING traces.
    // If we select one, we want its history.
    
    const activeTraces = node.data.traces.filter(t => 
      node.data.activeTraceIds?.includes(t.id)
    );
    
    const contextMessages: Message[] = [];
    activeTraces.forEach(t => {
      contextMessages.push(...t.messages);
    });
    
    return contextMessages;
  },

  deleteEdge: (edgeId: string) => {
    set({
      edges: get().edges.filter(e => e.id !== edgeId)
    });
    get().propagateTraces();
  },

  deleteNode: (nodeId: string) => {
    set({
      nodes: get().nodes.filter(n => n.id !== nodeId),
      edges: get().edges.filter(e => e.source !== nodeId && e.target !== nodeId)
    });
    get().propagateTraces();
  },

  deleteBranch: (startNodeId?: string, startEdgeId?: string) => {
    const { edges, nodes } = get();
    // We ONLY delete edges, NOT nodes.
    const edgesToDelete = new Set<string>();

    // Helper to traverse downstream EDGES based on Trace Dependency
    const traverse = (currentEdge: Edge) => {
      if (edgesToDelete.has(currentEdge.id)) return;
      edgesToDelete.add(currentEdge.id);
      
      const targetNodeId = currentEdge.target;
      // Identify the trace ID carried by this edge
      const traceId = currentEdge.sourceHandle?.replace('trace-', '');
      if (!traceId) return; 
      
      // Look for outgoing edges from the target node that carry the EVOLUTION of this trace.
      // Our logic generates next trace ID as: `${traceId}_${targetNodeId}`
      const expectedNextTraceId = `${traceId}_${targetNodeId}`;
      
      const outgoing = edges.filter(e => e.source === targetNodeId);
      outgoing.forEach(nextEdge => {
        // If the outgoing edge carries the evolved trace, delete it too
        if (nextEdge.sourceHandle === `trace-${expectedNextTraceId}`) {
          traverse(nextEdge);
        }
      });
    };

    if (startNodeId) {
      // If deleting a node, we delete ALL outgoing edges recursively.
      // Because all traces passing through this node are broken.
      // But we can't use `traverse` directly because we don't have a single start edge.
      // We just start traverse on ALL outgoing edges of this node.
      const initialOutgoing = edges.filter(e => e.source === startNodeId);
      initialOutgoing.forEach(e => traverse(e));
      
      // Also delete incoming to this node
      const incomingToNode = edges.filter(e => e.target === startNodeId);
      incomingToNode.forEach(e => edgesToDelete.add(e.id));
      
      set({
        nodes: nodes.filter(n => n.id !== startNodeId),
        edges: edges.filter(e => !edgesToDelete.has(e.id))
      });
    } else if (startEdgeId) {
      const startEdge = edges.find(e => e.id === startEdgeId);
      if (startEdge) {
        traverse(startEdge);
      }
      
      set({
        edges: edges.filter(e => !edgesToDelete.has(e.id))
      });
    }

    get().propagateTraces();
  },

  toggleNodeDisabled: (nodeId: string) => {
    const node = get().nodes.find(n => n.id === nodeId);
    if (node) {
      const newDisabled = !node.data.disabled;
      // Update node data AND draggable property
      set(state => ({
        nodes: state.nodes.map(n => {
          if (n.id === nodeId) {
            return {
              ...n,
              draggable: !newDisabled,  // Disable dragging when node is disabled
              selectable: !newDisabled, // Disable selection when node is disabled
              data: { ...n.data, disabled: newDisabled }
            };
          }
          return n;
        })
      }));
      // Update edge styles to reflect disabled state
      setTimeout(() => get().updateEdgeStyles(), 0);
    }
  },

  archiveNode: (nodeId: string) => {
    const node = get().nodes.find(n => n.id === nodeId);
    if (!node) return;
    
    const archived: ArchivedNode = {
      id: `archive_${Date.now()}`,
      label: node.data.label,
      model: node.data.model,
      systemPrompt: node.data.systemPrompt,
      temperature: node.data.temperature,
      reasoningEffort: node.data.reasoningEffort || 'medium'
    };
    
    set(state => ({
      archivedNodes: [...state.archivedNodes, archived]
    }));
  },

  removeFromArchive: (archiveId: string) => {
    set(state => ({
      archivedNodes: state.archivedNodes.filter(a => a.id !== archiveId)
    }));
  },

  createNodeFromArchive: (archiveId: string, position: { x: number; y: number }) => {
    const archived = get().archivedNodes.find(a => a.id === archiveId);
    if (!archived) return;
    
    const newNode: LLMNode = {
      id: `node_${Date.now()}`,
      type: 'llmNode',
      position,
      data: {
        label: archived.label,
        model: archived.model,
        temperature: archived.temperature,
        systemPrompt: archived.systemPrompt,
        userPrompt: '',
        mergeStrategy: 'smart',
        reasoningEffort: archived.reasoningEffort,
        traces: [],
        outgoingTraces: [],
        forkedTraces: [],
        activeTraceIds: [],
        response: '',
        status: 'idle',
        inputs: 1
      }
    };
    
    get().addNode(newNode);
  },

  toggleTraceDisabled: (edgeId: string) => {
    const { edges, nodes } = get();
    const edge = edges.find(e => e.id === edgeId);
    if (!edge) return;
    
    // Find all nodes connected through this trace (BIDIRECTIONAL)
    const nodesInTrace = new Set<string>();
    const visitedEdges = new Set<string>();
    
    // Traverse downstream (source -> target direction)
    const traverseDownstream = (currentNodeId: string) => {
      nodesInTrace.add(currentNodeId);
      
      const outgoing = edges.filter(e => e.source === currentNodeId);
      outgoing.forEach(nextEdge => {
        if (visitedEdges.has(nextEdge.id)) return;
        visitedEdges.add(nextEdge.id);
        traverseDownstream(nextEdge.target);
      });
    };
    
    // Traverse upstream (target -> source direction)
    const traverseUpstream = (currentNodeId: string) => {
      nodesInTrace.add(currentNodeId);
      
      const incoming = edges.filter(e => e.target === currentNodeId);
      incoming.forEach(prevEdge => {
        if (visitedEdges.has(prevEdge.id)) return;
        visitedEdges.add(prevEdge.id);
        traverseUpstream(prevEdge.source);
      });
    };
    
    // Start bidirectional traversal from clicked edge
    visitedEdges.add(edge.id);
    
    // Go upstream from source (including source itself)
    traverseUpstream(edge.source);
    
    // Go downstream from target (including target itself)  
    traverseDownstream(edge.target);
    
    // Check if any node in this trace is disabled
    const anyDisabled = Array.from(nodesInTrace).some(
      nodeId => nodes.find(n => n.id === nodeId)?.data.disabled
    );
    
    // Toggle: if any disabled -> enable all, else disable all
    const newDisabledState = !anyDisabled;
    
    set(state => ({
      nodes: state.nodes.map(node => {
        if (nodesInTrace.has(node.id)) {
          return { 
            ...node, 
            draggable: !newDisabledState,
            selectable: !newDisabledState,
            data: { ...node.data, disabled: newDisabledState } 
          };
        }
        return node;
      })
    }));
    
    // Update edge styles
    get().updateEdgeStyles();
  },

  updateEdgeStyles: () => {
    const { nodes, edges } = get();
    
    const updatedEdges = edges.map(edge => {
      const sourceNode = nodes.find(n => n.id === edge.source);
      const targetNode = nodes.find(n => n.id === edge.target);
      
      const isDisabled = sourceNode?.data.disabled || targetNode?.data.disabled;
      
      return {
        ...edge,
        style: {
          ...edge.style,
          opacity: isDisabled ? 0.3 : 1,
          strokeDasharray: isDisabled ? '5,5' : undefined
        }
      };
    });
    
    set({ edges: updatedEdges });
  },

  propagateTraces: () => {
    const { nodes, edges } = get();
    
    // We need to calculate traces for each node, AND update edge colors.
    // Topological Sort
    const inDegree = new Map<string, number>();
    const graph = new Map<string, string[]>();
    
    nodes.forEach(node => {
      inDegree.set(node.id, 0);
      graph.set(node.id, []);
    });
    
    edges.forEach(edge => {
      inDegree.set(edge.target, (inDegree.get(edge.target) || 0) + 1);
      graph.get(edge.source)?.push(edge.target);
    });
    
    const topoQueue: string[] = [];
    inDegree.forEach((count, id) => {
      if (count === 0) topoQueue.push(id);
    });
    
    const sortedNodes: string[] = [];
    while (topoQueue.length > 0) {
      const u = topoQueue.shift()!;
      sortedNodes.push(u);
      
      const children = graph.get(u) || [];
      children.forEach(v => {
        inDegree.set(v, (inDegree.get(v) || 0) - 1);
        if (inDegree.get(v) === 0) {
          topoQueue.push(v);
        }
      });
    }
    
    // Map<NodeID, Trace[]>: Traces LEAVING this node
    const nodeOutgoingTraces = new Map<string, Trace[]>();
    // Map<NodeID, Trace[]>: Traces ENTERING this node (to update NodeData)
    const nodeIncomingTraces = new Map<string, Trace[]>();
    
    // Also track Edge updates (Color AND SourceHandle)
    const updatedEdges = [...edges];
    let edgesChanged = false;
    
    // Iterate
    sortedNodes.forEach(nodeId => {
      const node = nodes.find(n => n.id === nodeId);
      if (!node) return;
      
      // 1. Gather Incoming Traces
      const incomingEdges = edges.filter(e => e.target === nodeId);
      const myIncomingTraces: Trace[] = [];
      
      incomingEdges.forEach(edge => {
        const parentOutgoing = nodeOutgoingTraces.get(edge.source) || [];
        
        // Find match based on Handle ID
        // EXACT match first
        // Since we removed 'new-trace' handle, we only look for exact trace matches.
        let matchedTrace = parentOutgoing.find(t => edge.sourceHandle === `trace-${t.id}`);
        
        // If no exact match, try to find a "Semantic Match" (Auto-Reconnect)
        // If edge.sourceHandle was 'trace-X', and now we have 'trace-X_Parent', that's a likely evolution.
        if (!matchedTrace && edge.sourceHandle?.startsWith('trace-')) {
           const oldId = edge.sourceHandle.replace('trace-', '');
           matchedTrace = parentOutgoing.find(t => t.id === `${oldId}_${edge.source}`);
        }
        
        // Fallback: If still no match, and parent has traces, try to connect to the most logical one.
        // If parent has only 1 trace, connect to it.
        // This handles cases where edge.sourceHandle might be null or outdated.
        if (!matchedTrace && parentOutgoing.length > 0) {
           // If edge has no handle ID, default to the last generated trace (usually Self Trace)
           if (!edge.sourceHandle) {
              matchedTrace = parentOutgoing[parentOutgoing.length - 1];
           }
        }
        
        if (matchedTrace) {
           myIncomingTraces.push(matchedTrace);
           
           // Update Edge Visuals & Logical Connection
           const edgeIndex = updatedEdges.findIndex(e => e.id === edge.id);
           if (edgeIndex !== -1) {
             const currentEdge = updatedEdges[edgeIndex];
             const newHandleId = `trace-${matchedTrace.id}`;
             
        // Check if we need to update
        if (currentEdge.sourceHandle !== newHandleId || currentEdge.style?.stroke !== matchedTrace.color) {
            updatedEdges[edgeIndex] = {
            ...currentEdge,
            sourceHandle: newHandleId, // Auto-update handle connection!
            style: { ...currentEdge.style, stroke: matchedTrace.color, strokeWidth: 2 }
            };
            edgesChanged = true;
        }
           }
        }
      });
      
      // Deduplicate incoming traces by ID (in case multiple edges carry same trace)
      const uniqueIncoming = Array.from(new Map(myIncomingTraces.map(t => [t.id, t])).values());
      nodeIncomingTraces.set(nodeId, uniqueIncoming);
      
      // 2. Generate Outgoing Traces
      // Every incoming trace gets appended with this node's response.
      // PLUS, we always generate a "Self Trace" (Start New) that starts here.
      
      const myResponseMsg: Message[] = [];
      if (node.data.userPrompt) {
        myResponseMsg.push({ 
           id: `${node.id}-user`, // Deterministic ID for stability
           role: 'user', 
           content: node.data.userPrompt 
        });
      }
      if (node.data.response) {
        myResponseMsg.push({ 
           id: `${node.id}-assistant`, 
           role: 'assistant', 
           content: node.data.response 
        });
      }
      
      const myOutgoingTraces: Trace[] = [];
      
      // A. Pass-through traces (append history)
      uniqueIncoming.forEach(t => {
        // When a trace passes through a node and gets modified, it effectively becomes a NEW branch of that trace.
        // We must append the current node ID to the trace ID to distinguish branches.
        // e.g. Trace "root" -> passes Node A -> becomes "root_A"
        // If it passes Node B -> becomes "root_B"
        // Downstream Node D can then distinguish "root_A" from "root_B".
        
        // Match Logic:
        // We need to find if this edge was PREVIOUSLY connected to a trace that has now evolved into 'newTrace'.
        // The edge.sourceHandle might be the OLD ID.
        // We need a heuristic: if edge.sourceHandle contains the ROOT ID of this trace, we assume it's a match.
        // But this is risky if multiple branches exist.
        
        // Better heuristic:
        // When we extend a trace t -> t_new (with id t.id + '_' + node.id),
        // we record this evolution mapping.
        
        const newTraceId = `${t.id}_${node.id}`;
        
        myOutgoingTraces.push({
          ...t,
          id: newTraceId,
          messages: [...t.messages, ...myResponseMsg]
        });
      });
      
      // B. Self Trace (New Branch) -> This is the "Default" self trace (always there?)
      // Actually, if we use Manual Forks, maybe we don't need an automatic self trace?
      // Or maybe the "Default" self trace is just one of the outgoing ones.
      // Let's keep it for compatibility if downstream picks it up automatically.
      const selfTrace: Trace = {
        id: `trace-${node.id}`,
        sourceNodeId: node.id,
        color: getStableColor(node.id), 
        messages: [...myResponseMsg]
      };
      myOutgoingTraces.push(selfTrace);
      
      // C. Manual Forks
      if (node.data.forkedTraces) {
         // We need to keep them updated with the latest messages (if prompt changed)
         // But keep their IDs and Colors stable.
         const updatedForks = node.data.forkedTraces.map(fork => ({
            ...fork,
            messages: [...myResponseMsg] // Re-sync messages
         }));
         myOutgoingTraces.push(...updatedForks);
      }
      
      nodeOutgoingTraces.set(nodeId, myOutgoingTraces);
      
      // Update Node Data with INCOMING traces (for sidebar selection)
      // We store uniqueIncoming in node.data.traces
      // Note: We need to update the node in the `nodes` array, but we are inside the loop.
      // We'll do a bulk set at the end.
    });
    
    // Bulk Update Store
    set(state => ({
      edges: updatedEdges,
      nodes: state.nodes.map(n => {
        const traces = nodeIncomingTraces.get(n.id) || [];
        const outTraces = nodeOutgoingTraces.get(n.id) || [];
        return {
          ...n,
          data: {
            ...n.data,
            traces, 
            outgoingTraces: outTraces,
            activeTraceIds: n.data.activeTraceIds
          }
        };
      })
    }));
  }
}));

export default useFlowStore;