Micro-Agent: smaller models ganging up on GPT-4
vLLM's Micro-Agent proves that three coordinated 8B models can outperform a single frontier model on complex reasoning tasks.
vLLM published Micro-Agent, a framework where multiple small language models collaborate inside a single API call to beat GPT-4o on reasoning benchmarks. The hook is that three Llama 3.1 8B models working together scored higher on MMLU-Pro and MATH-500 than a single GPT-4o call. The setup is elegant. One model acts as the coordinator, breaking down the problem. Two others act as specialists, working on sub-tasks. They pass intermediate results back and forth in a structured format. The whole conversation happens server-side, so latency stays low. You send one request, get one answer, but the API orchestrates a mini team inside. What makes this interesting is the cost angle. Running three 8B models on vLLM’s infrastructure is cheaper than one GPT-4o call, and the quality is comparable or better on multi-step reasoning. The trade-off is setup complexity. You need to design the orchestration protocol, tune the prompts for each role, and handle failure modes when models disagree. The technique works because reasoning tasks have natural decomposition points. A math word problem splits into parsing, calculation, verification. A coding problem splits into understanding requirements, writing logic, testing edge cases. Frontier models do this internally; Micro-Agent makes it explicit and distributes the work. I would use this for batch inference where cost matters more than convenience. Real-time chat needs the simplicity of a single call. Overnight report generation can afford the extra orchestration for half the price.
Source: Micro-Agent: Beat Frontier Models with Collaboration Inside Model API