{"id":2321,"date":"2025-07-07T23:33:02","date_gmt":"2025-07-07T23:33:02","guid":{"rendered":"https:\/\/violethoward.com\/new\/new-1-5b-router-model-achieves-93-accuracy-without-costly-retraining\/"},"modified":"2025-07-07T23:33:02","modified_gmt":"2025-07-07T23:33:02","slug":"new-1-5b-router-model-achieves-93-accuracy-without-costly-retraining","status":"publish","type":"post","link":"https:\/\/violethoward.com\/new\/new-1-5b-router-model-achieves-93-accuracy-without-costly-retraining\/","title":{"rendered":"New 1.5B router model achieves 93% accuracy without costly retraining"},"content":{"rendered":" \r\n<br><div>\n\t\t\t\t<div id=\"boilerplate_2682874\" class=\"post-boilerplate boilerplate-before\">\n<p><em>Want smarter insights in your inbox? Sign up for our weekly newsletters to get only what matters to enterprise AI, data, and security leaders.<\/em> <em>Subscribe Now<\/em><\/p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\"\/>\n<\/div><p>Researchers at Katanemo Labs have introduced Arch-Router, a new routing model and framework designed to intelligently map user queries to the most suitable large language model (LLM).\u00a0<\/p>\n\n\n\n<p>For enterprises building products that rely on multiple LLMs, Arch-Router aims to solve a key challenge: how to direct queries to the best model for the job without relying on rigid logic or costly retraining every time something changes.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-the-challenges-of-llm-routing\">The challenges of LLM routing<\/h2>\n\n\n\n<p>As the number of LLMs grows, developers are moving from single-model setups to multi-model systems that use the unique strengths of each model for specific tasks (e.g., code generation, text summarization, or image editing).\u00a0<\/p>\n\n\n\n<p>LLM routing has emerged as a key technique for building and deploying these systems, acting as a traffic controller that directs each user query to the most appropriate model.<\/p>\n\n\n\n<p>Existing routing methods generally fall into two categories: \u201ctask-based routing,\u201d where queries are routed based on predefined tasks, and \u201cperformance-based routing,\u201d which seeks an optimal balance between cost and performance.<\/p>\n\n\n\n<p>However, task-based routing struggles with unclear or shifting user intentions, particularly in multi-turn conversations. Performance-based routing, on the other hand, rigidly prioritizes benchmark scores, often neglects real-world user preferences and adapts poorly to new models unless it undergoes costly fine-tuning.<\/p>\n\n\n\n<p>More fundamentally, as the Katanemo Labs researchers note in their paper, \u201cexisting routing approaches have limitations in real-world use. They typically optimize for benchmark performance while neglecting human preferences driven by subjective evaluation criteria.\u201d\u00a0<\/p>\n\n\n\n<p>The researchers highlight the need for routing systems that \u201calign with subjective human preferences, offer more transparency, and remain easily adaptable as models and use cases evolve.\u201d<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-a-new-framework-for-preference-aligned-routing\">A new framework for preference-aligned routing<\/h2>\n\n\n\n<p>To address these limitations, the researchers propose a \u201cpreference-aligned routing\u201d framework that matches queries to routing policies based on user-defined preferences.<\/p>\n\n\n\n<p>In this framework, users define their routing policies in natural language using a \u201cDomain-Action Taxonomy.\u201d This is a two-level hierarchy that reflects how people naturally describe tasks, starting with a general topic (the Domain, such as \u201clegal\u201d or \u201cfinance\u201d) and narrowing to a specific task (the Action, such as \u201csummarization\u201d or \u201ccode generation\u201d).\u00a0<\/p>\n\n\n\n<p>Each of these policies is then linked to a preferred model, allowing developers to make routing decisions based on real-world needs rather than just benchmark scores. As the paper states, \u201cThis taxonomy serves as a mental model to help users define clear and structured routing policies.\u201d<\/p>\n\n\n\n<p>The routing process happens in two stages. First, a preference-aligned router model takes the user query and the full set of policies and selects the most appropriate policy. Second, a mapping function connects that selected policy to its designated LLM.\u00a0<\/p>\n\n\n\n<p>Because the model selection logic is separated from the policy, models can be added, removed, or swapped simply by editing the routing policies, without any need to retrain or modify the router itself. This decoupling provides the flexibility required for practical deployments, where models and use cases are constantly evolving.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img fetchpriority=\"high\" decoding=\"async\" height=\"269\" width=\"800\" src=\"https:\/\/venturebeat.com\/wp-content\/uploads\/2025\/07\/image.png?w=800\" alt=\"Preference-aligned routing framework (source: arXiv)\" class=\"wp-image-3013672\" srcset=\"https:\/\/venturebeat.com\/wp-content\/uploads\/2025\/07\/image.png 1600w, https:\/\/venturebeat.com\/wp-content\/uploads\/2025\/07\/image.png?resize=300,101 300w, https:\/\/venturebeat.com\/wp-content\/uploads\/2025\/07\/image.png?resize=768,258 768w, https:\/\/venturebeat.com\/wp-content\/uploads\/2025\/07\/image.png?resize=800,269 800w, https:\/\/venturebeat.com\/wp-content\/uploads\/2025\/07\/image.png?resize=1536,516 1536w, https:\/\/venturebeat.com\/wp-content\/uploads\/2025\/07\/image.png?resize=400,135 400w, https:\/\/venturebeat.com\/wp-content\/uploads\/2025\/07\/image.png?resize=750,252 750w, https:\/\/venturebeat.com\/wp-content\/uploads\/2025\/07\/image.png?resize=578,194 578w, https:\/\/venturebeat.com\/wp-content\/uploads\/2025\/07\/image.png?resize=930,313 930w\" sizes=\"(max-width: 800px) 100vw, 800px\"\/><figcaption class=\"wp-element-caption\"><em>Preference-aligned routing framework Source: arXiv<\/em><\/figcaption><\/figure>\n\n\n\n<p>The policy selection is powered by Arch-Router, a compact 1.5B parameter language model fine-tuned for preference-aligned routing. Arch-Router receives the user query and the complete set of policy descriptions within its prompt. It then generates the identifier of the best-matching policy.\u00a0<\/p>\n\n\n\n<p>Since the policies are part of the input, the system can adapt to new or modified routes at inference time through in-context learning and without retraining. This generative approach allows Arch-Router to use its pre-trained knowledge to understand the semantics of both the query and the policies, and to process the entire conversation history at once.<\/p>\n\n\n\n<p>A common concern with including extensive policies in a prompt is the potential for increased latency. However, the researchers designed Arch-Router to be highly efficient. \u201cWhile the length of routing policies can get long, we can easily increase the context window of Arch-Router with minimal impact on latency,\u201d explains Salman Paracha, co-author of the paper and Founder\/CEO of Katanemo Labs. He notes that latency is primarily driven by the length of the output, and for Arch-Router, the output is simply the short name of a routing policy, like \u201cimage_editing\u201d or \u201cdocument_creation.\u201d<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-arch-router-in-action\">Arch-Router in action<\/h2>\n\n\n\n<p>To build Arch-Router, the researchers fine-tuned a 1.5B parameter version of the Qwen 2.5 model on a curated dataset of 43,000 examples. They then tested its performance against state-of-the-art proprietary models from OpenAI, Anthropic and Google on four public datasets designed to evaluate conversational AI systems.<\/p>\n\n\n\n<p>The results show that Arch-Router achieves the highest overall routing score of 93.17%, surpassing all other models, including top proprietary ones, by an average of 7.71%. The model\u2019s advantage grew with longer conversations, demonstrating its strong ability to track context over multiple turns.\u00a0<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" height=\"410\" width=\"800\" src=\"https:\/\/venturebeat.com\/wp-content\/uploads\/2025\/07\/image_88212c.png?w=800\" alt=\"Arch-Router vs other models (source: arXiv)\" class=\"wp-image-3013673\" srcset=\"https:\/\/venturebeat.com\/wp-content\/uploads\/2025\/07\/image_88212c.png 1094w, https:\/\/venturebeat.com\/wp-content\/uploads\/2025\/07\/image_88212c.png?resize=300,154 300w, https:\/\/venturebeat.com\/wp-content\/uploads\/2025\/07\/image_88212c.png?resize=768,393 768w, https:\/\/venturebeat.com\/wp-content\/uploads\/2025\/07\/image_88212c.png?resize=800,410 800w, https:\/\/venturebeat.com\/wp-content\/uploads\/2025\/07\/image_88212c.png?resize=100,50 100w, https:\/\/venturebeat.com\/wp-content\/uploads\/2025\/07\/image_88212c.png?resize=400,205 400w, https:\/\/venturebeat.com\/wp-content\/uploads\/2025\/07\/image_88212c.png?resize=750,384 750w, https:\/\/venturebeat.com\/wp-content\/uploads\/2025\/07\/image_88212c.png?resize=578,296 578w, https:\/\/venturebeat.com\/wp-content\/uploads\/2025\/07\/image_88212c.png?resize=930,476 930w\" sizes=\"auto, (max-width: 800px) 100vw, 800px\"\/><figcaption class=\"wp-element-caption\"><em>Arch-Router vs other models Source: arXiv<\/em><\/figcaption><\/figure>\n\n\n\n<p>In practice, this approach is already being applied in several scenarios, according to Paracha. For example, in open-source coding tools, developers use Arch-Router to direct different stages of their workflow, such as \u201ccode design,\u201d \u201ccode understanding,\u201d and \u201ccode generation,\u201d to the LLMs best suited for each task. Similarly, enterprises can route document creation requests to a model like Claude 3.7 Sonnet while sending image editing tasks to Gemini 2.5 Pro.\u00a0<\/p>\n\n\n\n<p>The system is also ideal \u201cfor personal assistants in various domains, where users have a diversity of tasks from text summarization to factoid queries,\u201d Paracha said, adding that \u201cin those cases, Arch-Router can help developers unify and improve the overall user experience.\u201d<\/p>\n\n\n\n<p>This framework is integrated with Arch, Katanemo Labs\u2019 AI-native proxy server for agents, which allows developers to implement sophisticated traffic-shaping rules. For instance, when integrating a new LLM, a team can send a small portion of traffic for a specific routing policy to the new model, verify its performance with internal metrics, and then fully transition traffic with confidence. The company is also working to integrate its tools with evaluation platforms to streamline this process for enterprise developers further.<\/p>\n\n\n\n<p>Ultimately, the goal is to move beyond siloed AI implementations. \u201cArch-Router\u2014and Arch more broadly\u2014helps developers and enterprises move from fragmented LLM implementations to a unified, policy-driven system,\u201d says Paracha. \u201cIn scenarios where user tasks are diverse, our framework helps turn that task and LLM fragmentation into a unified experience, making the final product feel seamless to the end user.\u201d<\/p>\n<div id=\"boilerplate_2660155\" class=\"post-boilerplate boilerplate-after\"><div class=\"Boilerplate__newsletter-container vb\">\n<div class=\"Boilerplate__newsletter-main\">\n<p><strong>Daily insights on business use cases with VB Daily<\/strong><\/p>\n<p class=\"copy\">If you want to impress your boss, VB Daily has you covered. We give you the inside scoop on what companies are doing with generative AI, from regulatory shifts to practical deployments, so you can share insights for maximum ROI.<\/p>\n<p class=\"Form__newsletter-legal\">Read our Privacy Policy<\/p>\n<p class=\"Form__success\" id=\"boilerplateNewsletterConfirmation\">\n\t\t\t\t\tThanks for subscribing. Check out more VB newsletters here.\n\t\t\t\t<\/p>\n<p class=\"Form__error\">An error occured.<\/p>\n<\/p><\/div>\n<div class=\"image-container\">\n\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/venturebeat.com\/wp-content\/themes\/vb-news\/brand\/img\/vb-daily-phone.png\" alt=\"\"\/>\n\t\t\t\t<\/div>\n<\/p><\/div>\n<\/div>\t\t\t<\/div>\r\n<br>\r\n<br><a href=\"https:\/\/venturebeat.com\/ai\/new-1-5b-router-model-achieves-93-accuracy-without-costly-retraining\/\">Source link <\/a>","protected":false},"excerpt":{"rendered":"<p>Want smarter insights in your inbox? Sign up for our weekly newsletters to get only what matters to enterprise AI, data, and security leaders. Subscribe Now Researchers at Katanemo Labs have introduced Arch-Router, a new routing model and framework designed to intelligently map user queries to the most suitable large language model (LLM).\u00a0 For enterprises [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":2322,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[33],"tags":[],"class_list":["post-2321","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ai-automation"],"aioseo_notices":[],"jetpack_featured_media_url":"https:\/\/violethoward.com\/new\/wp-content\/uploads\/2025\/07\/ChatGPT-Image-Jul-2-2025-09_19_17-AM.png","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/violethoward.com\/new\/wp-json\/wp\/v2\/posts\/2321","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/violethoward.com\/new\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/violethoward.com\/new\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/violethoward.com\/new\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/violethoward.com\/new\/wp-json\/wp\/v2\/comments?post=2321"}],"version-history":[{"count":0,"href":"https:\/\/violethoward.com\/new\/wp-json\/wp\/v2\/posts\/2321\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/violethoward.com\/new\/wp-json\/wp\/v2\/media\/2322"}],"wp:attachment":[{"href":"https:\/\/violethoward.com\/new\/wp-json\/wp\/v2\/media?parent=2321"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/violethoward.com\/new\/wp-json\/wp\/v2\/categories?post=2321"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/violethoward.com\/new\/wp-json\/wp\/v2\/tags?post=2321"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}<!-- This website is optimized by Airlift. Learn more: https://airlift.net. Template:. Learn more: https://airlift.net. Template: 69e302c146fa5c92dc28ac12. Config Timestamp: 2026-04-18 04:04:16 UTC, Cached Timestamp: 2026-04-29 12:53:37 UTC -->