Skip to content

Commit 79f87e1

Browse files
committed
[PIP]
1 parent 62d4144 commit 79f87e1

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

README.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,46 @@ A powerful, enterprise-grade multi-agent system for advanced radiological analys
2525

2626
## 🏗️ Architecture
2727

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+
2868
The system consists of six specialized agents:
2969

3070
1. **Image Analysis Specialist**

0 commit comments

Comments
 (0)