Spaces:
Running
Running
fix: add missing Critic→Orchestrator edge for completeness critiques (#8)
Browse filesengine.py routes "completeness" critiques to Orchestrator (not just Planner
and Adjudicator). Also increase viewBox height to avoid clipping bottom nodes.
Co-authored-by: overthelex <mcvovkes@gmail.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
- architecture.html +2 -1
architecture.html
CHANGED
|
@@ -122,7 +122,7 @@
|
|
| 122 |
root.dataset.mounted = 'true';
|
| 123 |
const d3 = window.d3;
|
| 124 |
|
| 125 |
-
const VB_W = 1100, VB_H =
|
| 126 |
|
| 127 |
// Flow types
|
| 128 |
const FLOWS = [
|
|
@@ -235,6 +235,7 @@
|
|
| 235 |
{ from: 'analyst', to: 'reviewer', flow: 'evidence', label: '' },
|
| 236 |
{ from: 'reviewer', to: 'orchestrator', flow: 'evidence', label: '' },
|
| 237 |
{ from: 'critic', to: 'planner', flow: 'critique', label: '' },
|
|
|
|
| 238 |
{ from: 'critic', to: 'adjudicator', flow: 'critique', label: '' },
|
| 239 |
{ from: 'adjudicator', to: 'orchestrator', flow: 'verdict', label: '' },
|
| 240 |
{ from: 'orchestrator', to: 'formatter', flow: 'evidence', label: '' },
|
|
|
|
| 122 |
root.dataset.mounted = 'true';
|
| 123 |
const d3 = window.d3;
|
| 124 |
|
| 125 |
+
const VB_W = 1100, VB_H = 660;
|
| 126 |
|
| 127 |
// Flow types
|
| 128 |
const FLOWS = [
|
|
|
|
| 235 |
{ from: 'analyst', to: 'reviewer', flow: 'evidence', label: '' },
|
| 236 |
{ from: 'reviewer', to: 'orchestrator', flow: 'evidence', label: '' },
|
| 237 |
{ from: 'critic', to: 'planner', flow: 'critique', label: '' },
|
| 238 |
+
{ from: 'critic', to: 'orchestrator', flow: 'critique', label: '' },
|
| 239 |
{ from: 'critic', to: 'adjudicator', flow: 'critique', label: '' },
|
| 240 |
{ from: 'adjudicator', to: 'orchestrator', flow: 'verdict', label: '' },
|
| 241 |
{ from: 'orchestrator', to: 'formatter', flow: 'evidence', label: '' },
|