Fine-tuning is the process of continuing a trained AI model's training on a smaller set of domain examples so that new behavior is learned directly into the model's weights. The model then behaves that way by default, with no instructions or examples needed in the prompt.
Fine-tuning earns its cost where behavior, not knowledge, is the problem. It excels at teaching a model a consistent style, a strict output format, or a classification task with stable categories. Those patterns repeat across thousands of examples, which is exactly what training absorbs well.
The popular framing worth rejecting is fine-tuning as a fix for missing knowledge. Facts that change, fresh inventory, policy updates, anything specific to one customer, do not belong in weights. A fine-tuned model is frozen at training time and cannot cite its sources, so updating a single fact means retraining. Retrieval handles that job better, and prompting handles one-off instructions better.
Fine-tuning vs RAG at a glance
| Dimension | Fine-tuning | RAG |
|---|---|---|
| Where knowledge lives | Inside the model's weights | In an external knowledge source |
| Updating it | Retrain on new examples | Edit the documents |
| Best for | Style, format, classification | Fresh facts, citable answers |
Aide, the agentic AI platform for customer experience, applies that split in practice: intent classification, a task training genuinely improves, runs on a custom classifier built from your historical conversations, while customer facts, order data, and policies flow in as live context at answer time, where they can change by the hour without touching a model.