chore: put event loop node zoom inside worker bee graph

This commit is contained in:
Timothy
2026-02-22 18:03:31 -08:00
parent 13cc93c334
commit 9c7e846828
3 changed files with 34 additions and 28 deletions
+9 -7
View File
@@ -19,22 +19,24 @@ flowchart TB
%% =========================================
%% SYSTEM NODES
%% =========================================
subgraph EventLoopNode [Event Loop Node]
ELN_L["listener"]
ELN_SP["System Prompt<br/>(Task)"]
ELN_EL["Event loop"]
ELN_C["Conversation"]
end
subgraph WorkerBees [Worker Bees]
WB_C["Conversation"]
WB_SP["System prompt"]
subgraph Graph [Graph]
direction TB
N1["Node"] --> N2["Node"] --> N3["Node"]
N1 -.-> AN["Active Node"]
N2 -.-> AN
N3 -.-> AN
%% Nested Event Loop Node
subgraph EventLoopNode [Event Loop Node]
ELN_L["listener"]
ELN_SP["System Prompt<br/>(Task)"]
ELN_EL["Event loop"]
ELN_C["Conversation"]
end
end
end