SYSTEM UPGRADE v2.0
System Architecture
A high-performance interactive data flow visualization for the next-generation v2.0 pipeline engineering.
Data Flow Logic
End-to-end agentic execution pipeline
graph TD
%% Styles
classDef default color:#cbd5e1,font-family:Outfit;
classDef source fill:#0f172a,stroke:#38bdf8,stroke-width:2px,color:#fff;
classDef process fill:#1e293b,stroke:#818cf8,stroke-width:2px,color:#fff;
classDef db fill:#0f172a,stroke:#10b981,stroke-width:2px,color:#fff;
classDef lab fill:#1e1b4b,stroke:#ec4899,stroke-width:2px,color:#fff;
%% Inputs
subgraph Inputs[" External Data Sources "]
A1["ClinicalTrials.gov/AACT"]:::source
A2["SEC EDGAR 10-K/20-F"]:::source
A3["RSS News Feeds"]:::source
end
%% Process
subgraph CorePipeline[" Local Python Pipeline "]
B1["Data Validation Engine"]:::process
B2["APScheduler Sync"]:::process
B1 --> B2
end
%% Databases
subgraph Storage[" Storage Layer "]
C1[("ChromaDB Vectors")]:::db
C2[("Relational MySQL")]:::db
end
%% Agents
subgraph Swarm[" The AI Council (v2.0) "]
D1["Detective Agent"]:::lab
D2["Strategist Agent"]:::lab
D3["Volatility Expert"]:::lab
end
%% Flow
A1 --> B1
A2 --> B1
A3 --> B1
B2 --> C1
B2 --> C2
C1 --> Swarm
C2 --> Swarm
%% Output
E["Web Dashboard"]:::source
Swarm -.-> |"Sync Layer"| E