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
|
import { useCallback, useRef } from 'react';
import ReactFlow, {
Background,
Controls,
MiniMap,
ReactFlowProvider,
Panel,
useReactFlow
} from 'reactflow';
import 'reactflow/dist/style.css';
import useFlowStore from './store/flowStore';
import LLMNode from './components/nodes/LLMNode';
import Sidebar from './components/Sidebar';
import { Plus } from 'lucide-react';
const nodeTypes = {
llmNode: LLMNode,
};
function Flow() {
const {
nodes,
edges,
onNodesChange,
onEdgesChange,
onConnect,
addNode,
setSelectedNode
} = useFlowStore();
const reactFlowWrapper = useRef<HTMLDivElement>(null);
const { project } = useReactFlow();
const handleAddNode = () => {
const id = `node_${Date.now()}`;
addNode({
id,
type: 'llmNode',
position: { x: Math.random() * 400, y: Math.random() * 400 },
data: {
label: 'New Question',
model: 'gpt-4o',
temperature: 0.7,
systemPrompt: '',
userPrompt: '',
mergeStrategy: 'smart',
messages: [],
traces: [],
outgoingTraces: [],
forkedTraces: [],
response: '',
status: 'idle',
inputs: 1
},
});
};
const onNodeClick = (_: any, node: any) => {
setSelectedNode(node.id);
};
const onPaneClick = () => {
setSelectedNode(null);
};
const onPaneContextMenu = (event: React.MouseEvent) => {
event.preventDefault();
const bounds = reactFlowWrapper.current?.getBoundingClientRect();
if (!bounds) return;
const position = project({
x: event.clientX - bounds.left,
y: event.clientY - bounds.top
});
const id = `node_${Date.now()}`;
addNode({
id,
type: 'llmNode',
position,
data: {
label: 'New Question',
model: 'gpt-4o',
temperature: 0.7,
systemPrompt: '',
userPrompt: '',
mergeStrategy: 'smart',
messages: [],
traces: [],
outgoingTraces: [],
forkedTraces: [],
response: '',
status: 'idle',
inputs: 1
},
});
};
return (
<div style={{ width: '100vw', height: '100vh', display: 'flex' }}>
<div style={{ flex: 1, height: '100%' }} ref={reactFlowWrapper}>
<ReactFlow
nodes={nodes}
edges={edges}
onNodesChange={onNodesChange}
onEdgesChange={onEdgesChange}
onConnect={onConnect}
nodeTypes={nodeTypes}
onNodeClick={onNodeClick}
onPaneClick={onPaneClick}
onPaneContextMenu={onPaneContextMenu} // Use Right Click to add node for now
fitView
>
<Background color="#aaa" gap={16} />
<Controls />
<MiniMap />
<Panel position="top-left">
<button
onClick={handleAddNode}
className="bg-white px-4 py-2 rounded-md shadow-md font-medium text-gray-700 hover:bg-gray-50 flex items-center gap-2"
>
<Plus size={16} /> Add Block
</button>
</Panel>
</ReactFlow>
</div>
<Sidebar />
</div>
);
}
export default function App() {
return (
<ReactFlowProvider>
<Flow />
</ReactFlowProvider>
);
}
|