llm-routing

Tag

Cards List
#llm-routing

LLMRouter: Unified Infrastructure for Developing, Evaluating, and Deploying LLM Routers

arXiv cs.CL · yesterday Cached

LLMRouter presents a unified formulation of LLM routing as a sequential decision process, along with an open-source infrastructure and benchmark (xRouteBench) for developing, evaluating, and deploying LLM routers. Empirical results show learned routers achieve 14.6% relative improvement over the strongest fixed-model baseline.

0 favorites 0 likes
#llm-routing

How i managed to run a 193B Parameter model using only 24gb of Ram

Reddit r/ArtificialInteligence · 4d ago

Describes Iris Ai, a system that routes queries across 8 specialized LLMs on consumer hardware, achieving large-model performance with low memory by keeping only one model active at a time and dynamic model swapping.

0 favorites 0 likes
#llm-routing

LLM Routing is not the problem to solve; token efficiency is

Reddit r/AI_Agents · 2026-08-02

The article argues that model routing isn't the real problem to solve—token efficiency is. It advocates for a holistic closed-loop approach combining cheaper defaults, preference-aware routing, and better caching (e.g., Coinbase's 5%→60% cache hit improvement) to maximize useful intelligence per dollar.

0 favorites 0 likes
#llm-routing

Everyone is building LLM routers, we deprecated ours

Hacker News Top · 2026-07-31 Cached

Manifest explains why it deprecated its LLM router, arguing that model routing introduces unpredictability, breaks behavior consistency, and that prompt complexity cannot be inferred from the prompt alone, making caching and deliberate model selection more effective for most use cases.

0 favorites 0 likes
#llm-routing

Beyond Accuracy and Cost: Latency-Aware LLM Query Routing for Dynamic Workloads

arXiv cs.AI · 2026-07-22 Cached

A paper proposing a latency-aware LLM query router that jointly optimizes latency, accuracy, and cost using a lightweight latency estimator, achieving up to 40% improvement in accuracy–cost utility while maintaining comparable latencies.

0 favorites 0 likes
#llm-routing

VDAR-Router: Adaptive LLMs Routing via Verbalized Query Difficulty Analysis Retrieval

arXiv cs.CL · 2026-07-21 Cached

A new paper proposes VDAR-Router, a difficulty-aware retrieval-based routing framework for LLMs that adaptively selects models based on query difficulty, achieving better cost-performance trade-offs.

0 favorites 0 likes
#llm-routing

Online Learning for Cost-Efficient LLM Routing (6 minute read)

TLDR AI · 2026-07-21

Ramp Router uses EWMA for failure rates and Thompson sampling for latency to select the cheapest LLM model and service tier meeting deadlines, achieving 30% cost savings without performance loss.

0 favorites 0 likes
#llm-routing

ContinuityBench: A Benchmark and Systems Study of Stateful Failover in Multi-Provider LLM Routing

arXiv cs.LG · 2026-07-20 Cached

Introduces ContinuityBench, a benchmark and systems study for stateful failover in multi-provider LLM routing, proposing new metrics (CPR, CLO) and a history-forwarding proxy architecture achieving 99.20% context preservation.

0 favorites 0 likes
#llm-routing

@omarsar0: Great paper from DeepMind on effective model routing strategies.

X AI KOLs Following · 2026-07-14 Cached

Google DeepMind released a paper on effective model routing strategies, discussing how LLM routers are judged on accuracy and cost but can be meaningless if models respond identically.

0 favorites 0 likes
#llm-routing

Correlation-Aware Contextual Bandits with Surrogate Rewards for LLM Routing

arXiv cs.LG · 2026-07-13 Cached

This paper proposes correlation-aware contextual bandit algorithms that leverage surrogate reward signals from machine learning models for LLM routing, achieving improved accuracy-cost trade-offs and sample efficiency compared to standard baselines.

0 favorites 0 likes
#llm-routing

@_avichawla: A tricky LLM interview question: Your agent runs everything on a frontier LLM, so you add a routing layer that sends se…

X AI KOLs Timeline · 2026-07-11 Cached

Explains why model routing in agent tasks may not save costs due to cache warmup, and describes a production solution with model affinity and the open-source proxy Plano to achieve actual savings.

0 favorites 0 likes
#llm-routing

ComplianceGate: Classifier-Gated Multi-Tier LLM Routing for Inference in Regulated Industries

arXiv cs.LG · 2026-07-01 Cached

This paper introduces ComplianceGate, a classifier-gated multi-tier routing system for LLM inference that enforces compliance in regulated industries by directing requests to appropriate model tiers.

0 favorites 0 likes
#llm-routing

A Single Rewrite Suffices: Empirical Lessons from Production Skill Description Optimization

arXiv cs.CL · 2026-07-01 Cached

This paper presents an automated pipeline for optimizing natural language skill descriptions in enterprise AI agents to resolve skill collisions, achieving performance matching manual tuning with a 32× speedup. Ablation studies show that a single LLM rewrite using error cases captures most improvements, while other design choices have minimal impact.

0 favorites 0 likes
#llm-routing

Wayfinder Router: deterministic routing of queries between local and hosted LLM

Hacker News Top · 2026-06-28 Cached

Wayfinder Router is an open-source Python tool that deterministically routes prompts to local or hosted LLMs based on structural complexity, without calling any model, enabling offline cost savings.

0 favorites 0 likes
#llm-routing

@Xudong07452910: Many people's default habit when using AI coding is: go straight to the strongest model. For the same task, should Sonnet or Opus do it? Most of the time this decision is made on a whim. So this paper Agent-as-a-Router raises a very practical question: if different models excel at different tasks…

X AI KOLs Timeline · 2026-06-28 Cached

This paper proposes the Agent-as-a-Router framework, which transforms model routing into a dynamic, iterative process. Based on task type and real-time execution feedback, it selects the most suitable LLM to improve coding performance and cost efficiency.

0 favorites 0 likes
#llm-routing

The Routing Plateau: Understanding and Breaking the Accuracy Limits of LLM Routers

arXiv cs.LG · 2026-06-09 Cached

This paper identifies a 'routing plateau' phenomenon where diverse LLM routing methods converge to similar accuracy, far below the oracle, due to a predictability bottleneck that limits query-specific routing. It then shows that larger datasets, stronger encoders, and fine-tuning can help break through this plateau.

0 favorites 0 likes
#llm-routing

From Sampled Outcomes to Capability Distributions: Rethinking Supervision for LLM Routing

arXiv cs.LG · 2026-06-08 Cached

This paper proposes DARS, a framework that constructs routing supervision from a distributional view of model behavior to address the unreliability of single-shot labels in LLM routing.

0 favorites 0 likes
#llm-routing

Running a 24/7 AI agent dev team: I route each role to a different LLM (Claude/Kimi/MiniMax/GPT) to dodge a ~$2k/mo API bill. Setup + what actually breaks.

Reddit r/AI_Agents · 2026-06-08

The author describes a setup where different AI models are assigned to specific roles (planning, coding, review) to reduce API costs for a 24/7 autonomous engineering team, and shares common failure points like model wandering and hallucinated ownership.

0 favorites 0 likes
#llm-routing

IR3DE: A Linear Router for Large Language Models

Hugging Face Daily Papers · 2026-06-04 Cached

IR3DE is a ridge regression-based router that selects domain-expert LLMs for different tasks, achieving competitive performance while enabling dynamic addition or removal of experts without retraining.

0 favorites 0 likes
#llm-routing

UCCI: Calibrated Uncertainty for Cost-Optimal LLM Cascade Routing

arXiv cs.LG · 2026-05-20 Cached

UCCI proposes a calibration-first router for LLM cascades that uses isotonic regression to map token-level margin uncertainty to error probability, achieving a 31% cost reduction on a production NER workload while maintaining micro-F1=0.91 and reducing expected calibration error from 0.12 to 0.03.

0 favorites 0 likes
Next →
← Back to home

Submit Feedback