This commit is contained in:
Timothy J. Baek 2024-09-19 16:20:07 +02:00
parent ff737a9e25
commit 628d7ae72d
1 changed files with 10 additions and 3 deletions

View File

@ -81,8 +81,7 @@
data: {
user: $user,
message: history.messages[id],
model: $models.find((model) => model.id === history.messages[id].model),
label: createLabel(history.messages[id].content)
model: $models.find((model) => model.id === history.messages[id].model)
},
position: { x, y }
});
@ -162,6 +161,14 @@
</div>
{#if $nodes.length > 0}
<Flow {nodes} {nodeTypes} {edges} on:nodeclick={(e) => dispatch('nodeclick', e.detail)} />
<Flow
{nodes}
{nodeTypes}
{edges}
on:nodeclick={(e) => {
console.log(e.detail.node.data);
dispatch('nodeclick', e.detail);
}}
/>
{/if}
</div>