@@ -25,6 +25,46 @@ A powerful, enterprise-grade multi-agent system for advanced radiological analys
25
25
26
26
## 🏗️ Architecture
27
27
28
+ ``` mermaid
29
+ %%{init: {
30
+ 'theme': 'base',
31
+ 'themeVariables': {
32
+ 'primaryColor': '#ffffff',
33
+ 'primaryTextColor': '#ff0000',
34
+ 'primaryBorderColor': '#ff0000',
35
+ 'lineColor': '#ff0000',
36
+ 'secondaryColor': '#ffffff',
37
+ 'tertiaryColor': '#ffffff'
38
+ }
39
+ }}%%
40
+
41
+ flowchart TD
42
+ classDef default fill:#fff,stroke:#ff0000,stroke-width:2px,color:#ff0000
43
+ classDef input fill:#fff,stroke:#ff0000,stroke-width:2px,color:#ff0000
44
+ classDef agent fill:#fff,stroke:#ff0000,stroke-width:2px,color:#ff0000
45
+ classDef output fill:#fff,stroke:#ff0000,stroke-width:2px,color:#ff0000
46
+
47
+ Input[("Input\n(task + image)")]
48
+
49
+ subgraph Sequential_Workflow["Sequential Workflow"]
50
+ A1["Image Analysis\nSpecialist"]
51
+ A2["Radiological\nDiagnostician"]
52
+ A3["Intervention\nPlanner"]
53
+ A4["Quality Assurance\nSpecialist"]
54
+
55
+ A1 --> A2
56
+ A2 --> A3
57
+ A3 --> A4
58
+ end
59
+
60
+ Input --> Sequential_Workflow
61
+ Sequential_Workflow --> Diagnosis["Consolidated\nDiagnosis"]
62
+ Diagnosis --> Treatment["Treatment\nSpecialist"]
63
+ Treatment --> Output["Output\n(radiology_analysis.md)"]
64
+
65
+ style Sequential_Workflow fill:#fff,stroke:#ff0000,stroke-width:2px
66
+ ```
67
+
28
68
The system consists of six specialized agents:
29
69
30
70
1 . ** Image Analysis Specialist**
0 commit comments