One Prompt is not Enough: Automated Construction of a Mixture-of-Expert Prompts
Ruochen Wang, Sohyun An, Minhao Cheng, Tianyi Zhou, Sung Ju Hwang, Cho-Jui Hsieh
TL;DR
This paper tackles the limited problem-space coverage of single-instruction prompt engineering for LLMs by introducing Mixture-of-Prompts (MoP), a Mixture-of-Experts-inspired framework where each region of the problem space is governed by a dedicated expert prompt (an instruction plus demos). MoP uses a two-phase process: (1) Demo Assignment, clustering demos in embedding space to form region-specific experts, guided by the kernel-regression view of in-context learning; and (2) Instruction Assignment, a Region-Based Joint Search (RBJS) to jointly optimize the best instruction per expert given its demos. Inference routes queries to the closest expert in embedding space, and each expert uses its region-specific prompt to produce outputs, leading to substantial performance gains. Empirical results across Instruction Induction, Super Natural Instructions, and BIG-Bench-Hard show MoP achieving an average win rate of 81% against baselines and surpassing single-instruction methods by large margins, demonstrating the value of region-specific prompt design for broad task spaces. The work highlights practical considerations for prompt optimization, including clustering choices, embedding models, and region-aware evaluation, making MoP a scalable and adaptable approach for automated prompt construction with real-world impact on LLM generalization and efficiency.
Abstract
Large Language Models (LLMs) exhibit strong generalization capabilities to novel tasks when prompted with language instructions and in-context demos. Since this ability sensitively depends on the quality of prompts, various methods have been explored to automate the instruction design. While these methods demonstrated promising results, they also restricted the searched prompt to one instruction. Such simplification significantly limits their capacity, as a single demo-free instruction might not be able to cover the entire complex problem space of the targeted task. To alleviate this issue, we adopt the Mixture-of-Expert paradigm and divide the problem space into a set of sub-regions; Each sub-region is governed by a specialized expert, equipped with both an instruction and a set of demos. A two-phase process is developed to construct the specialized expert for each region: (1) demo assignment: Inspired by the theoretical connection between in-context learning and kernel regression, we group demos into experts based on their semantic similarity; (2) instruction assignment: A region-based joint search of an instruction per expert complements the demos assigned to it, yielding a synergistic effect. The resulting method, codenamed Mixture-of-Prompts (MoP), achieves an average win rate of 81% against prior arts across several major benchmarks.
