Published 2026-07-17 · Updated 2026-07-17
The First Question Is Not the Model
Teams often begin an AI feature by asking which model or technique to use. A better first question is what the system must know at the moment it answers. If the answer depends on documents, policies, product data or frequently changing internal knowledge, retrieval is usually part of the architecture.
If the goal is to change style, format, classification behaviour or domain-specific response patterns, fine-tuning may become relevant. Even then, it should be compared with simpler prompt, retrieval and validation patterns first.
When RAG Is Usually the Better Starting Point
- The source material changes often.
- Users need answers grounded in specific documents or records.
- The product needs citations, traceability or access controls.
- The organisation is still learning which questions users will ask.
When Fine-Tuning May Be Worth Considering
- The task has stable examples and a repeatable output style.
- Prompting alone is not consistent enough after careful testing.
- The team can maintain training data and evaluate regressions.
- The value justifies the extra operational complexity.
Do Not Ignore Non-AI Alternatives
Rules, normal search, better forms, workflow changes or deterministic software may solve the problem more cheaply and reliably. A useful AI design process keeps those options on the table until the product requirement proves otherwise.
The implementation choice should come after a small evaluation plan: representative queries, expected answers, failure cases, privacy constraints and a cost model that can survive real usage.