Plain-language explainer
Fine-tuning vs prompting
When should you fine-tune a model, and when is prompting enough?
Prompting changes the input: instructions, examples, retrieved documents, all with frozen weights, instant and reversible. Fine-tuning changes the weights: extra training on your data, often through small LoRA adapters, slower and stickier. The working rule: prompting plus retrieval for knowledge and one-off behavior, fine-tuning for form, when you need a consistent style, format or skill baked in across thousands of calls. Most production systems never need fine-tuning at all.
Last reviewed
Reading is the slow way. Start with a free lesson you can operate right now.
Start free: From the internet to your answer →Free, no code, no signup.
Then go deeper: Fine-tuning vs. prompting Locked
What people get wrong
- Fine-tuning is how you teach a model new facts. It is unreliable for knowledge; retrieval into the prompt is the fix for facts.
- Prompting is the amateur option. The strongest production stacks are mostly prompts, examples and retrieval on a frozen model.
- Fine-tuning rewrites the whole model. Modern fine-tuning usually trains a small adapter on top of frozen weights.
Where you see it in real products
- Custom assistant builders are prompt configuration, no weights touched.
- Provider fine-tuning APIs exist for the format-consistency cases.
- Brand bots with a locked voice across millions of replies are the classic fine-tune.
Common questions
- When is fine-tuning actually worth it?
- When you need a consistent format, tone or narrow skill at high volume and prompting keeps drifting. It buys reliability and shorter prompts. It does not reliably add knowledge, and it ties you to a model version you then have to maintain.
- What is LoRA?
- A way to fine-tune by training a small set of extra weights alongside the frozen original instead of updating all of them. It is far cheaper, it fits on modest hardware, and the small adapter file can be swapped in and out per task.
- If I need the model to know my documents, should I fine-tune?
- Usually no. Retrieval is the better tool: keep the documents outside the model and fetch the relevant ones into the prompt. They stay editable, answers can cite them, and fixing a wrong fact is an edit rather than a training run.
Related explainers
More in How models are trained
One idea at a time, in your inbox
New lessons and explainers, written the way these pages are. Now and then, not daily, and never a sales sequence.
We email you a confirmation link first. Unsubscribe in one click, any time. Privacy.
Part of See How AI Works, a free interactive course, where you learn how modern AI works by operating it, not watching videos.