Skip to main content

Choosing an LLM: A Developer's Guide to Model Selection in 2026

Choosing an LLM: A Developer's Guide to Model Selection in 2026Photo: N43 and Hermes
N43 ANALYSIS
technology · 7500
N43 ANALYSIS · ARTIFICIAL INTELLIGENCE

Context windows, cost per million tokens, latency, reasoning depth, and open weights — how engineers should actually pick a large language model when every vendor claims state of the art.

Source video: How to Choose Large Language Models: A Developer's Guide to LLMs · IBM Technology · approximately 114,000 views observed via yt-dlp on September 4, 2026. Independently researched by N43 and Hermes.

01 An Engineering Decision, Not a Hype Decision

The 2026 model landscape is split into two broad camps. Closed frontier families — OpenAI's GPT line, Anthropic's Claude, and Google's Gemini — compete on capability ceilings and integrated tooling. Open-weight families such as Meta's Llama, DeepSeek, and Alibaba's Qwen compete on price, transparency, and the right to self-host. Every major release arrives with a blog post claiming state of the art on some benchmark suite, and most of those claims are technically true within the narrow frame the vendor chose.

The problem is that leaderboard position is a statement about a model's average performance on someone else's tasks. Your workload is not an average of humanity's tasks. A model that wins on graduate-level reasoning questions may be mediocre at extracting structured fields from messy invoices, and a model near the bottom of the charts may beat the frontier on your narrow, high-volume classification job at a tenth of the price.

Treat model selection the way you treat database or infrastructure selection: gather requirements, run your own evaluation, check the economics, and commit to revisiting the decision on a schedule. The rest of this guide walks through the five criteria that actually move outcomes — evaluation, context, cost, latency, and control — and assembles them into a scorecard you can defend in a design review.

02 Evaluation: Benchmarks Tell the Truth Only If You Interrogate Them

Public benchmarks are useful for coarse filtering. Suites that test broad knowledge, coding ability, and mathematical reasoning separate the clearly capable from the clearly incapable, and the NIST AI Risk Management Framework's "measure" function makes the same point: a model should be characterized empirically, for a defined purpose, under defined conditions. What public benchmarks cannot do is tell you how a model behaves on your data, your prompt format, and your definition of a good output.

There is also a contamination problem. Test items from widely used benchmarks leak into pretraining corpora with depressing regularity, so a headline score partly measures memorization. A model that gains four points on a familiar suite after its training cutoff is suspicious in a way a model that gains four points on your private eval set is not. The standard defense is to build a small golden set of fifty to two hundred prompts drawn from real production traffic, with your team's own scoring rubric, and to run every candidate against it identically.

The discipline matters more than the size of the eval. A two-hundred-prompt suite that your team scores blind, with pass/fail criteria written before the models run, will outperform any public leaderboard as a predictor of production satisfaction. Weight that scorecard heavily toward the tasks that dominate your traffic — a point the weighting chart below makes concrete.

Suggested weighting for an internal LLM selection scorecardIllustrative horizontal bar chart. Task-specific fit is weighted 30 percent, total cost 25 percent, latency profile 20 percent, context needs 15 percent, and governance and control 10 percent.Suggested scorecard…Task-specific fit30%Total cost25%Latency profile20%Context needs15%Governance and control10%Weights are illustr…

Chart: N43 and Hermes. Illustrative weighting for an internal model-selection scorecard; percentages are suggestions to be recalibrated per workload, not measured data.

03 Context Windows and the Hidden Cost of Long Context

Advertised context windows crossed the million-token mark a while ago, and by 2026 several vendors sell windows in the millions as a headline feature. The advertised number is the maximum number of tokens the model can attend over, not the number over which it reliably reasons. Needle-in-haystack probing consistently shows that retrieval accuracy sags in the middle of long windows — the "lost in the middle" effect — and that instruction-following degrades as the prompt fills, even when the answer is present verbatim somewhere in the input.

Long context is also expensive in ways the sticker price hides. Attention over a longer sequence costs more compute per token, and the key-value cache that the provider must hold for your request grows linearly with context length, which is why several vendors charge premium rates above a context threshold. A naive pipeline that pastes an entire document store into every prompt does not just risk degraded answers; it multiplies your input bill by orders of magnitude compared with retrieving the three most relevant chunks.

The practical rule is to size the window to the task rather than the marketing. Retrieval-augmented pipelines that keep prompts under a few tens of thousands of tokens are usually cheaper and more accurate than full-context dumps. Reserve genuinely long context for the workloads that need it: whole-repository code questions, hour-long transcript analysis, and cross-document synthesis where chunking would destroy the reasoning chain.

04 The Economics of Tokens

API pricing is quoted per million tokens, and the first number to internalize is that input and output prices differ. Output tokens commonly cost three to five times what input tokens cost, because generation is sequential and compute-bound while prefill parallelizes. A workload that produces short summaries from long documents lands on a very different invoice than one that produces long essays from short prompts, even at identical token volumes.

Discounts reshape the arithmetic. Prompt caching — reusing the provider-side cache for a stable prompt prefix — cuts the price of the cached portion dramatically, with advertised discounts reaching around ninety percent on some platforms, which rewards architectures that keep instructions and reference material at the front of the prompt. Batch APIs knock roughly half off the price for workloads tolerant of hours of delay, which makes overnight summarization or enrichment pipelines far cheaper than their interactive equivalents.

Price also stratifies by tier. Budget models handle classification, extraction, and routing for under a dollar per million input tokens in many 2026 catalogs, mid-tier models cover most product features, and frontier models price at a multiple of both for the hardest reasoning. The chart below sketches those tiers — the exact figures change monthly, but the shape of the curve does not.

Illustrative input price per million tokens by model tierBar chart showing illustrative list prices for input tokens: budget tier about 0.60 dollars, mid tier about 3 dollars, frontier tier about 15 dollars per million input tokens.Input price per mil…USD / 1M input tokens$0$5$10$15~$0.60~$3.00~$15.00Budget tierMid tierFrontier tier

Chart: N43 and Hermes. ILLUSTRATIVE tier pricing for input tokens, September 2026; figures are representative of published vendor pricing pages (OpenAI, Anthropic, Google) and change frequently — check current catalogs before budgeting.

05 Latency and Throughput: Two Clocks, Two Workloads

Two numbers describe how fast a model feels: time to first token (TTFT), which dominates perceived responsiveness in streaming interfaces, and tokens per second once generation is under way. An assistant that starts answering in half a second at thirty tokens per second feels snappier than one that answers in one long block after eight seconds of silence, even when the total wall-clock time is identical. Interactive products optimize the first clock; batch pipelines ignore it entirely and optimize cost per completed job.

Reasoning models complicate the picture. Models that emit internal thinking tokens bill them as output and hide them from the user, so a "fast-feeling" reasoning model can quietly cost and take longer than a plain model of equal surface fluency. Set thinking budgets or pick a non-reasoning tier for latency-sensitive paths, and reserve deep reasoning for the asynchronous steps where a two-minute think is acceptable.

Capacity planning for self-hosted open weights follows the same two clocks: prefill time sets TTFT, and decode speed under concurrent load sets effective throughput per GPU. The conceptual curve below holds across deployment choices — as models grow, the first token takes longer and sustained generation slows — which is why tiered architectures route easy traffic to small models and escalate only when needed.

Time to first token versus output throughput across model sizes, illustrativeIllustrative line chart. As model size increases from small to frontier, time to first token rises from about 300 to 1800 milliseconds while output throughput falls from about 120 to 15 tokens per second.TTFT vs throughput …TTFTtokens/sec (right axis)0500100015002000SmallMediumLargeXLFrontierLeft axis: time to …

Chart: N43 and Hermes. ILLUSTRATIVE conceptual curve, not measured data on any specific model; it reflects standard prefill and decode scaling behavior documented in inference benchmarks such as MLCommons MLPerf Inference.

06 Open Weights or Closed APIs

Open-weight models trade capability ceiling for control. You can host them on your own infrastructure or a rented GPU, fine-tune them on proprietary data that never leaves your perimeter, pin a specific checkpoint so behavior never shifts under you, and audit the weights themselves. For regulated industries, on-premises deployment can be the difference between an approvable system and a compliance argument. The cost is operational: you own capacity planning, quantization choices, serving stack, and the security patch cadence.

Closed APIs invert the trade. You get the frontier capabilities, managed scaling, and vendor-handled updates, but you accept price changes on short notice, deprecation of model versions you may have qualified, and the fact that your prompts transit a third party. Data-governance posture matters here as much as latency does: an API can be faster to integrate and still be disallowed by your own policy for certain data classes.

A common 2026 pattern is a hybrid: open-weight models for high-volume, low-complexity traffic inside the network, and a frontier API for the escalated tail where capability genuinely pays. Route by task, evaluate both sides against the same golden set, and let measured unit economics — not ideology — decide the split.

07 A Decision Framework Built to Be Revised

Assemble the previous sections into a one-page scorecard. Define the workload and its traffic mix; build the golden eval set and rubric; shortlist two or three candidates per tier; measure task accuracy, p50 and p95 TTFT, and end-to-end cost on a realistic day of traffic; and record the governance constraints that eliminate options outright. Weight the criteria as in the earlier chart, score each candidate, and take the cheapest model that clears your accuracy bar — not the most capable one you can afford.

Then schedule the re-evaluation, because the half-life of a model decision is short. Vendors deprecate versions with a few months' notice, prices move in both directions, and a challenger model can match last quarter's frontier at a tenth of the cost. Switching costs are real — prompt formats, fine-tunes, evaluation harnesses, and integration code all encode assumptions about a specific model — so document them and keep an abstraction layer thin enough that a routing change is a configuration edit, not a rewrite.

The teams that win with LLMs in 2026 are not the ones that picked the single best model; the best model is a moving target that no one can reliably identify in advance. The winners are the ones whose evaluation, routing, and cost telemetry are good enough that swapping models is boring. Make selection a process, and the hype stops mattering.

N43 and Hermes is an independent analytical publication. Numbers are identified as measured, estimated, or illustrative where appropriate.

References

  1. Large language model (Wikipedia)
  2. NIST AI Risk Management Framework (AI RMF 1.0) (National Institute of Standards and Technology)
  3. MLPerf Inference benchmarks (MLCommons)
  4. OpenAI API pricing (OpenAI)
  5. Anthropic pricing (Anthropic)
  6. Gemini API pricing (Google)
  7. Source video: How to Choose Large Language Models: A Developer's Guide to LLMs (IBM Technology, ~114,000 views, observed September 4, 2026)
N43 ANALYSIS

N43 and Hermes · Independent Analysis

By N43 and Hermes for Sailor Bob News.

📍 Related Duty Stations

F.E. Warren Air Force Base
Cheyenne, Wyoming
Air Force0
Aberdeen Proving Ground
Aberdeen, Washington
Army3.6
Marine Corps Air Ground Combat Center Twentynine Palms
Twentynine Palms, California
Army2.7
Naval Support Activity Annapolis
Annapolis, Maryland
Navy5.0

📰 Related Stories

From Sand to Snapdragon: How a Mobile Processor Is Actually Made
📰 technology

From Sand to Snapdragon: How a Mobile Processor Is Actually Made

N43 and Hermes3d ago
Why Some 2026 Smartphones Cost So Little: The Bill-of-Materials Economics Explained
📰 technology

Why Some 2026 Smartphones Cost So Little: The Bill-of-Materials Economics Explained

N43 and Hermes3d ago
Every Frontier Model of 2026, Explained: The Landscape Behind the Leaderboard
📰 technology

Every Frontier Model of 2026, Explained: The Landscape Behind the Leaderboard

N43 and Hermes3d ago
Snapdragon's 2026 Lineup, Explained: How Qualcomm Tiers Its Chips From 4-Series to 8 Elite
📰 technology

Snapdragon's 2026 Lineup, Explained: How Qualcomm Tiers Its Chips From 4-Series to 8 Elite

N43 and Hermes3d ago
GPT-6 Astra, Claude Fable, Gemini 3.8: Inside the Frontier Model Wave
📰 technology

GPT-6 Astra, Claude Fable, Gemini 3.8: Inside the Frontier Model Wave

N43 and Hermes3d ago
AI Subscriptions in 2026: What the $20-a-Month Tier Actually Buys
📰 technology

AI Subscriptions in 2026: What the $20-a-Month Tier Actually Buys

N43 and Hermes3d ago
← Back to News