Field notes

Models

How to Choose the Right AI Model for Business Work

A practical model-selection framework built around the work, the quality bar, and the operating constraints that matter after launch.

Three geometric options meet at the branches of a charcoal path

Direct answer

How should a company choose the right AI model?

The right AI model is the least expensive, fastest model that reliably clears the quality and safety bar for a specific unit of work. Define the task, build representative evaluations, test the full tool-using workflow, and route only the hardest cases to larger models.

Key takeaways

  • Choose for a defined job, not for a general leaderboard position.
  • Evaluate the complete workflow, including retrieval and tool calls.
  • Track quality, latency, cost, and escalation rate together.
  • Use routing so routine work does not pay frontier-model prices.
01

Start with the work, not the model

Model selection goes wrong when a team starts with a provider name and works backward. A model can be excellent at broad reasoning and still be the wrong choice for a narrow, high-volume workflow. The useful question is not which model is best. It is which model is best for this job under these operating constraints.

Write the job as a unit of work that can be observed from beginning to end. For example: classify one support ticket, reconcile one invoice, draft one account brief, or review one access request. A concrete unit gives you something to evaluate, price, monitor, and improve.

02

Define the acceptance bar before testing

A model should not be judged by whether its output feels impressive. Define what acceptable work looks like before comparing candidates. Include business rules, failure modes, and the cases that must be handed to a person.

Quality
What must be correct, complete, grounded, or formatted consistently?
Safety
Which actions require permission, review, or a hard stop?
Speed
Does the work need an interactive answer, a near-real-time decision, or a batch result?
Economics
What is the acceptable cost per completed unit of work, including retries and review?
03

Build a scorecard that reflects production

Use a representative evaluation set drawn from the work the system will actually see. Include ordinary cases, difficult edge cases, incomplete inputs, and adversarial or ambiguous requests. Google Cloud's evaluation guidance likewise recommends representative data and a mix of automated and human evaluation. Score every candidate with the same prompt, context, tools, and output contract.

DimensionQuestion to answerProduction signal
Task qualityDid it complete the job correctly?Pass rate or rubric score
ReliabilityDoes it stay within the output contract?Retry and malformed-output rate
LatencyIs it fast enough at real concurrency?p50 and p95 completion time
CostWhat does successful work cost?Cost per accepted result
EscalationHow often does a person need to intervene?Review and handoff rate
04

Use the Grid Model Fit Score

The Grid Model Fit Score is a gated decision, not a single blended number. First remove any candidate that misses the required quality or safety threshold. Then compare the survivors on cost per accepted result, p95 latency, and escalation rate. This prevents a cheap but unreliable model from winning on price—or a powerful model from winning without regard to operating cost.

The table below shows how the decision might work for 1,000 monthly support-ticket classifications. The figures are illustrative and should be replaced with results from your own evaluation set.

CandidateAccepted resultsp95 latencyCost per accepted resultEscalationDecision
Model A86%1.4 sec$0.0358%Default route
Model B93%4.8 sec$0.1904%Escalated route
Model C78%0.8 sec$0.01820%Does not clear quality bar

Grid Model Fit Score: gate on quality and safety first; then choose the lowest-cost, fastest candidate for each difficulty tier. Recalculate with production outcomes, not benchmark scores alone.

05

Test the system around the model

Most production failures are not isolated model failures. Retrieval can return the wrong document. A tool can time out. Permissions can block an otherwise correct plan. A prompt can omit the context needed to make a safe decision. Evaluate the complete path from request to result, not a model response in a playground.

For tool-using agents, measure whether the model chose the right tool, supplied valid arguments, interpreted the result correctly, and stopped when the job was complete. A slightly weaker model with disciplined tool use can outperform a stronger model inside a real workflow.

06

Route routine and difficult work differently

One model rarely needs to handle every case. A smaller model can classify, extract, or draft routine work. A larger model can receive only ambiguous cases, high-stakes decisions, or work that failed the first quality check. This keeps cost and latency aligned with the difficulty of the job.

A routing policy should be observable. Record why a request moved to another model, whether the escalation improved the result, and what the extra step cost in an AI agent observability record. Otherwise routing becomes hidden complexity instead of an operating advantage.

07

Re-evaluate when the work changes

Model selection is a versioned operating decision. Re-run the evaluation when prompts, tools, data sources, model versions, or business rules change. Keep the previous result as a baseline so an apparent quality improvement does not hide higher cost, slower responses, or more human review.

The durable asset is not a one-time winner. It is the evaluation set, acceptance bar, and decision record that let the company change models without relearning the job from scratch.

08

Use this AI model selection checklist

Before approving a model for production, make the decision reproducible. A reviewer who was not part of the evaluation should be able to understand what was tested, why the winner cleared the bar, which cases are routed elsewhere, and what would trigger a new evaluation.

Job
Name the unit of work, process owner, expected volume, and downstream action.
Evaluation
Version the representative test set, rubric, prompt, context, tools, and model candidates.
Gates
Record the minimum quality and safety thresholds and the evidence that each candidate cleared them.
Economics
Estimate cost per accepted result at expected concurrency, including retries and review.
Routing
Define the default model, escalation conditions, fallback behavior, and stop conditions.
Review
Assign the production owner, monitoring signals, and events that require re-evaluation.

The approval artifact should travel with the workflow. Pair the model decision with the same accepted-outcome definition used in your AI agent ROI review.

Evidence trail

Sources and methodology

Grid Field Notes combines Grid's operating model with published technical and risk-management guidance. Numerical examples are illustrative unless an article explicitly identifies measured customer data.

Frequently asked questions

Questions teams ask

Should a company use one AI model or several?

Most companies benefit from a small approved set. Use routing to match routine, complex, and high-risk work to different models while keeping evaluation and governance consistent.

What is the most important AI model metric?

For business work, start with the rate of accepted outcomes. Accuracy, latency, and token cost matter, but they should be interpreted together as cost per accepted result.

How often should AI models be re-evaluated?

Re-evaluate after any material change to the model, prompt, tools, data, or business rules. For stable workflows, add a regular review cadence and monitor production drift between formal evaluations.