Fan-out / synthesise
Open in builderN independent LLM calls run concurrently, then one synthesiser sees them all.
Multi-agent specialist + lead pattern. Three different angles on the same input in roughly the time of one — the parallel batch in v0.4 makes wall-clock latency ≈ max(child latencies) instead of their sum.
Show workflow JSON (4 steps)
{
"id": "fanout-synth",
"name": "Fan-out then synthesise",
"description": "Three independent reviewers run in parallel, then a lead synthesises a single verdict.",
"inputs": {
"input": "(your topic / code / text here)"
},
"steps": [
{
"id": "a",
"label": "Angle A",
"type": "llm",
"prompt": "Analyse {{input.input}} from angle A (e.g. correctness). 3 bullets.",
"maxTokens": 200
},
{
"id": "b",
"label": "Angle B",
"type": "llm",
"parallel": true,
"prompt": "Analyse {{input.input}} from angle B (e.g. security). 3 bullets.",
"maxTokens": 200
},
{
"id": "c",
"label": "Angle C",
"type": "llm",
"parallel": true,
"prompt": "Analyse {{input.input}} from angle C (e.g. style). 3 bullets.",
"maxTokens": 200
},
{
"id": "synth",
"label": "Synthesise",
"type": "llm",
"prompt": "Combine the three analyses below into a single verdict.\n\nA:\n{{a.output}}\n\nB:\n{{b.output}}\n\nC:\n{{c.output}}",
"maxTokens": 350
}
]
}