一篇新的研究论文介绍了一个两阶段的级联框架,旨在优化生产环境中大型语言模型(LLM)服务的成本。该系统首先对传入的查询进行聚类,以将其路由到成本效益最高的模型。第二阶段包含一个质量评估级联,仅当初始响应被认为质量较低时,才将查询升级到更强大、更昂贵的模型。这种方法旨在保持高准确性,同时显著降低每个输出令牌的时间和总体运营成本。
AI
arXiv:2606.27457v1 Announce Type: cross Abstract: Efficient deployment of large language models (LLMs) in production forces a trade-off between accuracy and cost. Operators often default to a single model that is either expensive for easy queries or insufficient for hard ones. To…
Efficient deployment of large language models (LLMs) in production forces a trade-off between accuracy and cost. Operators often default to a single model that is either expensive for easy queries or insufficient for hard ones. To address this challenge, we propose a two-stage ca…
A cascaded approach for deploying large language models that balances accuracy and cost by routing queries to appropriate models based on clustering and quality estimation.
<p>Every LLM app I've shipped had the same shelf life: pick the best model, hardcode it, and watch it become the second-best model within a month. The fix I keep seeing is a config file full of model strings and a quarterly migration chore. I wanted the abstraction one level up: …
<p> </p> <p><strong>What:</strong> A new paper, <strong>Cluster, Route, Escalate</strong> (arXiv 2606.27457), is a <strong>cost-aware cascade</strong> for serving large language models: it sends most queries to a cheap model and reserves an expensive one for the hard cases.</p> <…