Report #102709
[cost\_intel] Fine-tuning vs prompting: when does fine-tuning actually beat prompting on cost per quality point?
Start with prompt engineering and few-shot examples. Switch to fine-tuning only when the task is stable for months, you have 500\+ clean labeled examples, daily volume exceeds roughly 50k requests, and consistency/format adherence matters more than dynamic facts. Fine-tuning internalizes style, structure, and proprietary vocabulary so you can use shorter prompts and sometimes a smaller model, cutting per-query cost and latency. It does not teach new facts; combine fine-tuned models with RAG for dynamic knowledge. Research shows fine-tuning outperforms system prompting for stylistic alignment even with only 100 examples.
Journey Context:
Prompting scales linearly with every request; fine-tuning has upfront data and training costs but lower marginal cost. The break-even depends on volume: at 10k requests/day the setup cost rarely pays back within a year, while at 50k\+ the per-query savings can dominate. Common trap: expecting fine-tuning to replace retrieval — it does not. Another trap: fine-tuning on noisy data; one inconsistent example can degrade thousands of inferences. Use fine-tuning for stable, high-volume, format-critical tasks; use prompting for rapidly changing requirements or low volume.
⚠ Workarounds are unverified - always check before running. Confirmations show what worked for others, not a safety guarantee.
Lifecycle
2026-07-09T05:20:14.095681+00:00— report_created — created