AIJun 17

Opti-Q: A Constraint-Based Optimization Framework for Multi-LLM Question Planning

arXiv:2607.22621
Originality Incremental advance
AI Analysis

For developers deploying LLMs in budget-constrained QA systems, OPTI-Q provides a principled method to trade off quality and resources, achieving significant gains over heuristic baselines.

OPTI-Q is a constraint-based optimizer for multi-LLM question answering that plans execution DAGs to optimize answer quality under cost, latency, and energy budgets. It improves average QoA by ~58% on MMLU-Pro and ~41% on SimpleQA over baselines at comparable cost.

While large language models (LLMs) enable strong question answering (QA), budgeted deployment is complicated by nondeterminism and heterogeneous resource profiles (cost, latency, and energy). We present OPTI-Q, a database-inspired, cost-based optimizer that implements a plan-before-execute paradigm for multi-LLM orchestration. OPTI-Q models LLM invocations as physical operators in an execution DAG and, for each question, searches for plans that optimize answer quality (QoA) while trading off financial cost, latency, and energy under user-specified resource constraints. Plans can include sequential operators that pass intermediate answers as context and parallel/blend operators that run models concurrently and merge their outputs. To search this space without executing each candidate plan, OPTI-Q uses PERFDB, a statistics catalog populated and refreshed from benchmarks and execution traces, to estimate the QoA and resource costs of both individual operators and composed subplans. Using these estimates, OPTI-Q performs Pareto-frontier search and selects a final plan based on user preferences. On MMLU-Pro and SimpleQA under user-specified budgets, OPTI-Q improves average QoA by ~58% and ~41% over baselines at comparable cost, demonstrating that database-style planning yields better quality-resource trade-offs for multi-LLM QA.

Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes