/** * 03-parallel-agents.ts * ───────────────────── * Demonstrates `spawn_parallel_agents` — running multiple specialist agents * concurrently and synthesizing their results with different strategies. * * Three agents work in parallel on the same topic: * • sentiment_agent — tone & sentiment analysis * • keyword_agent — key-phrase extraction * • summary_agent — executive summary * * The demo runs through all four synthesis strategies so you can see how * each one combines (or selects) the parallel outputs. * * No API key needed. * * Run: * npx ts-node examples/03-parallel-agents.ts */ export {}; //# sourceMappingURL=03-parallel-agents.d.ts.map