Skip to content

Commit d265c75

Browse files
author
Ismail Sajid
committed
fix: simplify mermaid syntax for rendering
1 parent 4f906ae commit d265c75

1 file changed

Lines changed: 11 additions & 11 deletions

File tree

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -92,24 +92,24 @@ In 2026, **cost-efficiency is the differentiator.** agent-compose is optimized f
9292

9393
```mermaid
9494
graph TD
95-
CLI["agent-compose CLI"] --> Loader["YAML Loader & Spec Validator"]
96-
Loader --> DAG["DAG Constructor & Topo-Sort"]
97-
DAG --> Engine["Async Execution Engine"]
95+
CLI[agent-compose CLI] --> Loader[YAML Loader]
96+
Loader --> DAG[DAG Constructor]
97+
DAG --> Engine[Async Engine]
9898
99-
subgraph "Execution Layer (Parallel Dispatch)"
100-
Engine --> LGraph["LangGraph Engine"]
101-
Engine --> Crew["CrewAI Engine"]
102-
Engine --> Direct["Direct/DeepSeek Engine"]
99+
subgraph Execution_Layer
100+
Engine --> LGraph[LangGraph Engine]
101+
Engine --> Crew[CrewAI Engine]
102+
Engine --> Direct[DeepSeek Engine]
103103
end
104104
105-
subgraph "Model Providers"
106-
LGraph --> Providers["OpenAI / Anthropic / DeepSeek"]
105+
subgraph Model_Providers
106+
LGraph --> Providers[Cloud LLMs]
107107
Crew --> Providers
108108
Direct --> Providers
109109
end
110110
111-
Providers --> Metrics["Cost & Latency Tracking"]
112-
Metrics --> Final["Final Output (MD / JSON)"]
111+
Providers --> Metrics[Tracking]
112+
Metrics --> Final[Final Report]
113113
```
114114

115115
---

0 commit comments

Comments
 (0)