File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -92,24 +92,24 @@ In 2026, **cost-efficiency is the differentiator.** agent-compose is optimized f
9292
9393``` mermaid
9494graph 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---
You can’t perform that action at this time.
0 commit comments