Two Tools Working Together

November 5, 2026 · Part 14 of 20

Opening Scene

A genuinely well-equipped craftsperson doesn’t choose between a pocket tool and workshop access — they use both together, deliberately, reaching for whichever genuinely fits the job at hand in the moment. Small and large language models work this exact same way in a well-designed production system: not a strict either-or choice, but two tools routed to intelligently within the same architecture.

In Plain English

Model routing sends simpler, well-defined requests to a fast, cheap small model, and reserves complex, novel, or high-stakes requests for a more capable large model, directly extending the multi-model routing architecture covered in this content library’s LLMOps series. This combines small models’ cost and speed advantage with large models’ capability ceiling, getting genuine benefits from both within one coordinated system.

The Old Way

Before hybrid routing between small and large models was widely recognized as a legitimate, effective pattern, the choice was often framed as strictly either-or:

  • Projects sometimes framed the decision as small model versus large model, as if choosing one meant abandoning the other entirely.
  • There wasn’t yet a well-established practice of classifying requests upfront and routing them to the appropriately sized model automatically.
  • Systems that used only one model size across every request left real cost savings or capability on the table, depending on which extreme they’d chosen.

Recognizing hybrid routing as often the most effective option, rather than treating small-versus-large as mutually exclusive, reflects real, accumulated practical experience.

What’s Changing (and Why AI Is the Reason)

  1. Production systems increasingly classify requests by complexity and route simpler ones to small models and complex ones to large models, directly extending the routing architecture covered in this content library’s LLMOps series.
  2. This connects directly to the decision framework covered in Article 13, where hybrid routing is recognized as a legitimate, often optimal outcome alongside choosing either size exclusively.
  3. This routing layer often serves both a cost optimization purpose and a redundancy purpose simultaneously, connecting directly to the failover planning covered in this content library’s LLMOps series.

The Metaphor, Fully Extended

The Multi-ToolHybrid Routing Concept
Using both a pocket tool and workshop access deliberatelyUsing both small and large models deliberately within one system
Reaching for whichever genuinely fits the job in the momentRouting each request to whichever model genuinely fits its complexity
Not choosing one exclusively at the cost of the otherNot committing to one model size exclusively across every request
Both together outperforming either aloneSmall and large models combined outperforming either used alone

For Beginners: What to Actually Do

  • Practice designing a simple routing layer that classifies requests by complexity and sends them to an appropriately sized model.
  • Learn to identify which parts of a real workflow are genuinely simple (good candidates for small models) versus genuinely complex (good candidates for large models).
  • Get comfortable exploring the multi-model routing architecture covered in this content library’s LLMOps series.

For Practitioners and Leaders: The Deeper Layer

  • Frame the small-versus-large model choice as “and” rather than strictly “or” wherever a system handles requests of genuinely varied complexity.
  • Design routing layers that combine cost optimization with redundancy benefits, connecting directly to this content library’s LLMOps series.
  • Recognize hybrid routing as a legitimate, often optimal outcome within the decision framework covered in Article 13.

Quick Recap

  • Model routing sends simpler requests to small models and complex requests to large models within one system.
  • This combines small models’ cost and speed advantage with large models’ capability ceiling.
  • This directly extends the routing architecture covered in this content library’s LLMOps series.
  • Hybrid routing is a legitimate, often optimal outcome, not a compromise between two exclusive choices.

Where This Fits in the Series

Article 14 covered combining both model sizes deliberately. Article 15 turns to keeping a deployed small model’s edge sharp over time.