Skip to content

A curated list of Awesome-LLM-Ensemble papers for the survey "Harnessing Multiple Large Language Models: A Survey on LLM Ensemble"

License

Notifications You must be signed in to change notification settings

junchenzhi/Awesome-LLM-Ensemble

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 

Repository files navigation

🔥🔥🔥 Awesome-LLM-Ensemble

"Harnessing Multiple Large Language Models: A Survey on LLM Ensemble"

Zhijun Chen, Jingzheng Li, Pengpeng Chen, Zhuoran Li, Kai Sun, Yuankai Luo, Qianren Mao, Dingqi Yang, Hailong Sun, Philip S. Yu

Logo

Maintenance License Awesome PRs Welcome

GitHub stars GitHub forks

If you like our project, please give it a star ⭐ to show your support!Thank you:)

For this emerging topic, we hope this project can provide some reference for researchers and look forward to more interesting studies!

📣 Notices

🔥🔥🔥 This is a collection of papers on LLM Ensemble.
It's based on our survey paper: Harnessing Multiple Large Language Models: A Survey on LLM Ensemble.

[Always] [Maintain] We will make this list updated frequently (at least until 12/31/2025). All newly discovered relevant papers will be updated in this repository within one week and in the arXiv paper within two months!
If you found any error or any missed/new paper, please don't hesitate to contact us or Pull requests.

[Always] [Collaboration] If you have any new and interesting ideas, feel free to discuss with us and explore potential collaborations.


   
 

1. LLM Ensemble and Taxonomy

1.1 LLM Ensemble

Paper Abstract:

LLM Ensemble---which involves the comprehensive use of multiple large language models (LLMs), each aimed at handling user queries during the downstream inference, to benefit from their individual strengths---has gained substantial attention recently. The widespread availability of LLMs, coupled with their varying strengths and out-of-the-box usability, has profoundly advanced the field of LLM Ensemble. This paper presents the first systematic review of recent developments in LLM Ensemble. First, we introduce our taxonomy of LLM Ensemble and discuss several related research problems. Then, we provide a more in-depth classification of methods under the broad categories of ``ensemble-before-inference, ensemble-during-inference, ensemble-after-inference'', and review all relevant methods. Finally, we introduce related benchmarks and applications, summarize existing studies, and suggest several future research directions. A curated list of papers on LLM Ensemble is available at https://github.com/junchenzhi/Awesome-LLM-Ensemble.

1.2 Taxonomy

Figure 1: Illustration of LLM Ensemble Taxonomy. (Note that for (b) ensemble-during-inference paradigm, there is also a process-level ensemble approach that we have not represented in the figure, mainly because that this approach is instantiated by a single method.)

Figure 2: Taxonomy of All LLM Ensemble Methods.

  • (a) Ensemble before inference.
    In essence, this approach employs a routing algorithm prior to LLM inference to allocate a specific query to the most suitable model, allowing the selected model that is specialized for the query and typically more cost-efficient inference to perform the task. Existing methods can be classified into two categories, depending on whether the router necessitates the use of pre-customized data for pre-training:

    • (a1) Pre-training router;
    • (a2) Non pre-training router.
  • (b) Ensemble during inference.
    As the most granular form of ensemble among the three broad categories, this type of approach encompasses:

    • (b1) Token-level ensemble methods, which integrate the token-level outputs of multiple models at the finest granularity of decoding;
    • (b2) Span-level ensemble methods, which conduct ensemble at the level of a sequence fragment (e.g., a span of four words);
    • (b3) Process-level ensemble methods, which select the optimal reasoning process step-by-step within the reasoning chain for a given complex reasoning task. Note that for these ensemble-during-inference methods, the aggregated text segments will be concatenated with the previous text and fed again to models.
  • (c) Ensemble after inference.
    These methods can be classified into two categories:

    • (c1) Non cascade methods, which perform ensemble using multiple complete responses contributed from all LLM candidates;
    • (c2) Cascade methods, which consider both performance and inference costs, progressively reasoning through a chain of LLM candidates largely sorted by model size to find the most suitable inference response.

   
 

2. Papers

2.1 Ensemble Before Inference

Figure 3: Summary analysis of the key attributes of ensemble-before-inference methods.

2.1.1 (a,1) Pre-Trained Router

  • LLM Routing with Benchmark Datasets. [Paper] (2023)

    • Name: -
    • Code: -
  • RouteLLM: Learning to Route LLMs with Preference Data. [Paper] (2024)

  • Hybrid LLM: Cost-Efficient and Quality-Aware Query Routing. [Paper] (2024)

  • LLM Bandit: Cost-Efficient LLM Generation via Preference-Conditioned Dynamic Routing. [Paper] (2025)

    • Name: -
    • Code: -
  • Harnessing the Power of Multiple Minds: Lessons Learned from LLM Routing. [Paper] (2024)

  • MetaLLM: A High-performant and Cost-efficient Dynamic Framework for Wrapping LLMs. [Paper] (2024)

  • SelectLLM: Query-Aware Efficient Selection Algorithm for Large Language Models. [Paper] (2024)

    • Name: SelectLLM
    • Code: -
  • Bench-CoE: a Framework for Collaboration of Experts from Benchmark. [Paper] (2024)

  • Routing to the Expert: Efficient Reward-guided Ensemble of Large Language Models. [Paper] (2023)

    • Name: ZOOTER
    • Code: -
  • TensorOpera Router: A Multi-Model Router for Efficient LLM Inference. [Paper] (2024)

    • Name: TO-Router
    • Code: -
  • Query Routing for Homogeneous Tools: An Instantiation in the RAG Scenario. [Paper] (2024)

    • Name: HomoRouter
    • Code: -
  • Fly-Swat or Cannon? Cost-Effective Language Model Choice via Meta-Modeling. [Paper] (2023)

  • Routoo: Learning to Route to Large Language Models Effectively. [Paper] (2024)

    • Name: Routoo
    • Code: -

2.1.2 (a,2) Non pre-trained router

  • PickLLM: Context-Aware RL-Assisted Large Language Model Routing. [Paper] (2024)

    • Name: PickLLM
    • Code: -
  • Eagle: Efficient Training-Free Router for Multi-LLM Inference. [Paper] (2024)

    • Name: Eagle
    • Code: -
  • Blending Is All You Need: Cheaper, Better Alternative to Trillion-Parameters LLM. [Paper] (2024)

    • Name: Blending
    • Code: -

 

2.2 Ensemble During Inference

Figure 4: Summary analysis of the key attributes of ensemble-during-inference methods.

2.2.1 (b,1) Token-Level Ensemble

  • Breaking the Ceiling of the LLM Community by Treating Token Generation as a Classification for Ensembling. [Paper] (2024)

  • Ensemble Learning for Heterogeneous Large Language Models with Deep Parallel Collaboration. [Paper] (2024)

  • Bridging the Gap between Different Vocabularies for LLM Ensemble. [Paper] (2024)

  • Determine-Then-Ensemble: Necessity of Top-k Union for Large Language Model Ensembling. [Paper] (2024)

    • Name: UniTe
    • Code: -
  • Pack of LLMs: Model Fusion at Test-Time via Perplexity Optimization. [Paper] (2024)

  • Purifying large language models by ensembling a small language model. [Paper] (2024)

    • Name: -
    • Code: -
  • CITER: Collaborative Inference for Efficient Large Language Model Decoding with Token-Level Routing. [Paper] (2025)

2.2.2 (b,2) Span-Level Ensemble

  • Cool-Fusion: Fuse Large Language Models without Training. [Paper] (2024)

    • Name: Cool-Fusion
    • Code: -
  • Hit the Sweet Spot! Span-Level Ensemble for Large Language Models. [Paper] (2024)

    • Name: SweetSpan
    • Code: -
  • SpecFuse: Ensembling Large Language Models via Next-Segment Prediction. [Paper] (2024)

    • Name: SpecFuse
    • Code: -

2.2.3 (b,3) Process-Level Ensemble

  • Ensembling Large Language Models with Process Reward-Guided Tree Search for Better Complex Reasoning. [Paper] (2024)
    • Name: LE-MCTS
    • Code: -

 

2.3 Ensemble After Inference

Figure 5: Summary analysis of the key attributes of ensemble-during-inference methods.

2.3.1 (c,1) Non Cascade

  • More Agents Is All You Need. [Paper] (2024)

  • Smoothie: Label Free Language Model Routing. [Paper] (2024)

  • Getting MoRE out of Mixture of Language Model Reasoning Experts. [Paper] (2023)

  • LLM-Blender: Ensembling Large Language Models with Pairwise Ranking and Generative Fusion. [Paper] (2023)

  • LLM-TOPLA: Efficient LLM Ensemble by Maximising Diversity. [Paper] (2024)

  • URG: A Unified Ranking and Generation Method for Ensembling Language Models. [Paper] (2024)

    • Name: URG
    • Code: -

2.3.2 (c,2) Cascade

  • EcoAssistant: Using LLM Assistant More Affordably and Accurately. [Paper] (2023)

  • Large Language Model Cascades with Mixture of Thoughts Representations for Cost-efficient Reasoning. [Paper] (2023)

  • Model Cascading: Towards Jointly Improving Efficiency and Accuracy of NLP Systems. [Paper] (2022)

    • Name: Model Cascading
    • Code: -
  • Cache & Distil: Optimising API Calls to Large Language Models. [Paper] (2023)

  • A Unified Approach to Routing and Cascading for LLMs. [Paper] (2024)

  • When Does Confidence-Based Cascade Deferral Suffice? [Paper] (2023)

    • Name: -
    • Code: -
  • FrugalGPT: How to Use Large Language Models While Reducing Cost and Improving Performance. [Paper] (2023)

    • Name: FrugalGPT
    • Code: -
  • Language Model Cascades: Token-level uncertainty and beyond. [Paper] (2024)

    • Name: FrugalGPT
    • Code: -
  • AutoMix: Automatically Mixing Language Models. [Paper] (2023)

  • Dynamic Ensemble Reasoning for LLM Experts. [Paper] (2024)

    • Name: DER
    • Code: -

 

2.4 Others: Benchmarks and Applications

2.4.1 Benchmarks

  • LLM-BLENDER: Ensembling Large Language Models with Pairwise Ranking and Generative Fusion. [Paper] (2023)

    • Name: MixInstruct
    • Evaluation Goal: Performance
    • Code: [Official]
  • RouterBench: A Benchmark for Multi-LLM Routing System. [Paper] (2024)

    • Name: RouterBench
    • Evaluation Goal: Performance and cost
    • Code: [Official]

2.4.2 Applications

Beyond the methods presented before, the concept of LLM Ensemble has found applications in a variety of more specialized tasks and domains. Here we give some examples:

  • Ensemble-Instruct: Generating Instruction-Tuning Data with a Heterogeneous Mixture of LMs. [Paper] (2023)

    • Name: Ensemble-Instruct
    • Task: Instruction-Tuning Data Generation
    • Code: [Official]
  • Bayesian Calibration of Win Rate Estimation with LLM Evaluators. [Paper] (2024)

    • Name: BWRS, Bayesian Dawid-Skene
    • Task: Win Rate Estimation
    • Code: [Official]
  • PromptMind Team at MEDIQA-CORR 2024: Improving Clinical Text Correction with Error Categorization and LLM Ensembles. [Paper] (2024)

    • Name: -
    • Task: SQL generation
    • Code: -
  • LLM-Ensemble: Optimal Large Language Model Ensemble Method for E-commerce Product Attribute Value Extraction. [Paper] (2024)

    • Name: -
    • Task: Product Attribute Value Extraction
    • Code: -

   
 

3 Summarization

Figure 6: Summary analysis of the key attributes of LLM Ensemble approaches.

Citation

@article{chen2025harnessing,
  title={Harnessing Multiple Large Language Models: A Survey on LLM Ensemble},
  author={Chen, Zhijun and Li, Jingzheng and Chen, Pengpeng and Li, Zhuoran and Sun, Kai and Luo, Yuankai and Mao, Qianren and Yang, Dingqi and Sun, Hailong and Yu, Philip S},
  journal={arXiv preprint arXiv:2502.18036},
  year={2025}
}

About

A curated list of Awesome-LLM-Ensemble papers for the survey "Harnessing Multiple Large Language Models: A Survey on LLM Ensemble"

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published