AI Strategy

The AI Model You Pick Barely Matters. Here's What Does.

Everyone benchmarks models. The routing, memory, and verification around them are what actually make or break the outcome.

Ashley KaysAshley Kays
7 min read
Share:

Every few weeks a new "here's my exact AI stack" post makes the rounds, ranking models by task. They're fun and often well-researched. But if you actually ship and run AI systems, you already know the uncomfortable thing they mostly leave out:

Which model you pick is rarely what makes or breaks the outcome. The system around it is.

I run a fleet of AI agents in production — 55 of them, a hosted control layer, scheduled jobs, the works. The model choice matters at the margins. What actually determines whether the thing works is three unglamorous layers most stack posts never mention, plus the discipline to run them honestly. Here's the case, and four scars that taught it to me.

The three layers that actually decide outcomes

Routing. The win isn't "use the smartest model." It's using the cheap, fast model for the 90% of work that's easy, and reserving the expensive model for the 10% that's genuinely hard — ideally letting the cheap one escalate when it gets stuck, rather than deciding the tier up front. Get the routing right and a mid-tier model beats a frontier model used naively, at a fraction of the cost. The routing is the product. The model is a swappable part inside it.

Memory. A model with no memory re-learns your context every single call. The systems that work write things down — what the business is, what worked last time, what not to repeat — and feed it back in. Most of the perceived "intelligence" gap between a good AI product and a mediocre one is actually a memory gap.

Verification. Models are confidently wrong. A system that matters checks its own output before it ships — a second pass, a test, a skeptical reviewer agent — instead of trusting the first answer. This is the layer people skip because it doesn't demo, and it's the one that separates "impressive" from "trustworthy."

Pick the best model on earth and skip these three, and you'll ship something that looks great in a demo and falls over in week two.

Four scars (each one is a rule)

The reason I trust the argument above is that I've been burned into it. Four times worth sharing — because each one is a transferable rule, not just a war story.

Two of my own agents built the same feature in parallel for eight hours. Two sessions, same repo, no coordination — one shipped a feature while the other was still building the identical thing. I threw the second away. Rule: with multiple agents (or people), coordination beats horsepower. Check what's already in flight before you start.

My builds die from memory exhaustion and it looks like a code bug. The compile blows past the default memory ceiling and throws an error that reads like broken code but isn't. I lost real hours debugging the wrong layer. Rule: know your infrastructure limits, or you'll debug machine problems as if they were code problems.

Most of my data scrapers were dead and the dashboard still looked alive. They'd been failing silently for months while the UI happily showed the last good numbers. Rule: "running" and "producing" are different words. Monitor outputs, not uptime.

My "single source of truth" was a comfortable fiction. I keep one file that's supposed to hold every model ID. It was two versions out of date — I figured, one-line fix. Then I audited it and found the real IDs hardcoded across ~230 other files, and the elegant config system I was quietly proud of was dead code, called from nowhere. Changing the one file would have silently split the system in half. Rule: audit your source of truth before you trust it. The thing named "canonical" often isn't.

The point, stated plainly

The model is a commodity — it changes every few months and any stack post about it goes stale on the same schedule. The system around it is the durable, compounding thing: the routing, the memory, the verification, and the discipline to run it honestly and audit your own assumptions.

That's the part worth building well, and it's the part that's actually yours. If you're building this for your own company, invest there, not in chasing the model leaderboard. And if you'd rather have it built and run for you — that's what my agency does.

Ashley Kays

Ashley Kays

Founder

Founder of Waymaker. BigCo veteran (NCR, Walt Disney World, Wyndham Worldwide) turned solo operator. Building the operating layer above AI building tools.

Want this built for your business?

We design, build, and run the AI stack behind these notes — for clients like you.

See how we work