Skip to content

Commit 6ea8414

Browse files
committed
Fix mermaid syntax in tutorial 03 diagram
`--|label|` is not valid mermaid; the labelled-arrow form is `-->|label|` with the arrow head present.
1 parent b000804 commit 6ea8414

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

docs/tutorials/real-world/03-multi-agent.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ flowchart LR
1313
topic --> factual[factual_researcher]
1414
topic --> stat[statistician]
1515
topic --> quote[quoter]
16-
factual --|chunk| logger[logger]
17-
stat --|chunk| logger
18-
quote --|chunk| logger
19-
factual --|finding| synth[synthesizer]
20-
stat --|finding| synth
21-
quote --|finding| synth
22-
synth --|chunk| logger
23-
synth --|answer| sink[sink]
16+
factual -->|chunk| logger[logger]
17+
stat -->|chunk| logger
18+
quote -->|chunk| logger
19+
factual -->|finding| synth[synthesizer]
20+
stat -->|finding| synth
21+
quote -->|finding| synth
22+
synth -->|chunk| logger
23+
synth -->|answer| sink[sink]
2424
```
2525

2626
Two properties of the graph matter. The three specialists run

0 commit comments

Comments
 (0)