The benchmark suite compares Broadside-AI scatter/gather against a sequential baseline on the same task and model.
ollama signin
ollama pull nemotron-3-super:cloud
python benchmarks/suite.py
python benchmarks/suite.py deepseek-v3.2:cloudollama pull gemma3:1b
python benchmarks/suite.py gemma3:1bpip install broadside-ai[anthropic]
export ANTHROPIC_API_KEY=your-key-here
python benchmarks/suite.py --backend anthropicpip install broadside-ai[openai]
export OPENAI_API_KEY=your-key-here
python benchmarks/suite.py --backend openai --model gpt-4o-miniFor each task, the suite runs:
- one 3-agent scatter/gather execution
- the same task 3 times sequentially
- a comparison of latency, token cost, and output diversity
benchmarks/results/
{model}_{n}agents_{timestamp}/
results.json
RESULTS.md
creative_pitch/
analytical_comparison/
classification/
summarization/
code_review/
Each task directory contains raw scatter outputs, a sequential baseline sample, and a machine-readable summary.
Speedup: sequential wall-clock / parallel wall-clockCost vs 1 call: total scatter+synthesis tokens / one single-call baselineDiversity: average pairwise Jaccard distance across scatter outputs
This repository intentionally keeps selected benchmark result snapshots under
benchmarks/results/ so README claims can be audited against real runs.