readme file & some ux improvements

This commit is contained in:
overcuriousity
2025-09-18 00:24:35 +02:00
parent fdc26dcf15
commit 15227b392d
4 changed files with 132 additions and 23 deletions

View File

@@ -559,6 +559,11 @@ class GraphManager {
outgoing_edges: node.outgoing_edges || []
};
if (node.max_depth_reached) {
processedNode.borderColor = '#ff0000'; // Red border for max depth
}
// Add confidence-based styling
if (node.confidence) {
processedNode.borderWidth = Math.max(2, Math.floor(node.confidence * 5));