30-second version: Three ways to make an AI model do what you want. Prompting (just tell it, in the conversation). RAG (give it documents to read on the fly). Fine-tuning (rebuild the model on your specific data). Each one is right for a different problem. The mistake almost every team makes is reaching for fine-tuning when prompting or RAG would have been faster, cheaper, and good enough.
Best for: Builders, founders, technical operators — and beginners who keep seeing these terms and want them in plain English.
You’ll get: A clear decision framework, real examples, the right tool for each problem, and the trap that wastes the most time and money.
Skip if: You train foundation models for a living. Daily AI fundamentals in our free Beginners in AI newsletter.
If you’ve heard the terms “prompting,” “RAG,” and “fine-tuning” thrown around and felt like they were three names for the same thing, you’re not crazy. The marketing for each one overlaps with the others. The actual techniques are different and solve different problems.
Here is the plain-English breakdown, with real examples that aren’t taken from the same five SaaS tutorials everyone else cites.
What each one actually means
Prompting is just writing instructions to the AI in the conversation. You don’t change the model. You don’t give it new data. You just structure your request well. “Write me an email to my landlord about the broken radiator. Polite tone. Reference the May 5 voicemail. End with a request for written confirmation.” That’s prompting.
RAG (Retrieval-Augmented Generation) is when the AI reaches into a separate library of documents to find relevant information before answering. The model itself hasn’t changed; you’ve just plugged in a search system that hands it the right documents at the right moment. “Answer this customer question using only the contents of our product manual.” The model reads the manual chunk that matches, then answers from that.
Fine-tuning is when you take a base model and retrain it on your specific data, producing a new model that has internalized that data. The base model now “remembers” your style or specialty. The output is faster (no document lookup) and more consistent in voice, but the upfront cost is high and the model is harder to update.
The cost ladder
- Prompting. Free or near-free. Anyone can do it. Iterates in seconds.
- RAG. Moderate cost. Requires a vector database or search index, embedding generation, and some plumbing. Days to weeks to set up properly. Ongoing cost for the storage and the extra API calls per query.
- Fine-tuning. Highest cost. Hundreds to thousands of dollars in compute per training run for serious tuning. Weeks to set up. Requires high-quality training data (typically 500+ well-curated examples minimum). Ongoing cost to maintain the tuned model.
The cost ratio is roughly 1 : 50 : 500 for prompting : RAG : fine-tuning in dollar terms, and the time ratio is roughly 1 : 100 : 1000.
When to use prompting
Prompting is the right answer to 70% of “how do I make the AI do X” questions. The single biggest mistake people make is reaching for RAG or fine-tuning when better prompts would have solved their problem.
Prompting works for:
- A pipe organ tuner drafting tuning-day reports for cathedral clients. The tuner gives the AI the day’s notes (humidity readings, pitch deviations, repairs made) and asks for the report in the standard format. Pure prompting.
- A small-batch perfumer writing notes for their next product release. The perfumer describes the scent profile, the inspiration, and the target customer; the AI drafts copy in the perfumer’s style. Pure prompting.
- A licensed home inspector summarizing a 40-page inspection report into a client-readable executive summary. Drop the PDF in, structured prompt explaining what to extract. Pure prompting.
If you can hand the AI everything it needs in a single conversation, you don’t need RAG or fine-tuning.
When to use RAG
RAG is the right answer when your AI needs to consistently reach into a body of documents that’s too large to paste into a prompt and that changes over time.
RAG works for:
- A boutique antique-watch dealer answering customer questions about provenance, restoration history, and authentication across 4,000 cataloged pieces. The dealer can’t paste 4,000 watch records into every prompt; the AI uses RAG to look up the relevant pieces.
- A wildlife rehabilitation center routing intake calls. A volunteer asks “what do I do with a fledgling barred owl”? The AI uses RAG to find the center’s specific protocol for that species and reads back the relevant steps.
- A small-firm IP lawyer searching across decades of opinion letters for similar prior arguments. RAG over the firm’s document library means the AI can pull up the November 2017 letter on a parallel issue and quote it.
The pattern: there’s a corpus, it’s too big to paste, and it updates over time. RAG handles both constraints.
When to use fine-tuning
Fine-tuning is right when prompting and RAG have both been seriously attempted and they cannot achieve the specific style, voice, or behavior you need at the cost or latency you need.
Fine-tuning works for:
- A scrimshaw artist who wants every product description in their exact archaic-naval voice across thousands of pieces. Prompting can approximate the voice; fine-tuning makes it deterministic. If the volume justifies the upfront cost, the consistency is the reward.
- A specialty translation service that needs every translation to match a client’s legacy translation memory. Fine-tuning on the memory produces a model that defaults to the client’s terminology and idioms.
- A pediatric tele-medicine triage tool that must phrase questions in age-appropriate language for kids while gathering symptoms. Fine-tuning ensures the kid-facing voice is consistent and never drifts.
The pattern: high-volume, style-critical, latency-sensitive use cases where the upfront cost amortizes over millions of inferences.
The decision tree
- Can you hand the AI everything it needs in a single conversation? Use prompting. Stop here unless something fails.
- Does the AI need to look things up from a body of documents that’s too big to paste and changes over time? Use RAG.
- Have you exhausted prompting and RAG, and you still need a consistent voice or specialized behavior that can’t be achieved with conversation-level instructions? Now consider fine-tuning.
- None of these solve your problem? Your problem might not be a model problem — it might be a workflow design problem. Step back and reconsider what you’re actually trying to do.
About 90% of decisions stop at step 1. Most of the other 10% stop at step 2. Fine-tuning is rarely the right first move for a new project.
The traps that waste money
- Fine-tuning when a better prompt would have done it. The most common mistake. People reach for fine-tuning because it sounds impressive. The investment usually doesn’t earn back.
- RAG when the documents fit in the prompt. If your relevant documents are under 50 pages total, just paste them in. Setting up a vector database to handle them is overkill.
- Fine-tuning on too little data. Fine-tuning on 50 examples often produces a worse model than the base model. You need real volume to see the benefit — typically 500+ high-quality examples minimum.
- Fine-tuning on data that’ll go stale. If your tuning data needs to be updated quarterly, you’re paying for retraining quarterly. RAG handles freshness better.
- Treating RAG as a magic search box. RAG quality depends on chunking strategy, embedding model choice, and retrieval scoring. A badly set up RAG system returns wrong-but-confident answers more often than no RAG at all.
What combinations look like in practice
Real-world systems usually combine all three. The pattern that scales best:
- Prompting handles the conversation logic and the structure of the response.
- RAG handles the variable, frequently-updated facts the response needs to reference.
- Fine-tuning (when needed) handles the style and behavioral consistency the team needs across thousands of similar interactions.
For most BiA readers, the practical answer is “you’re probably using prompting only, and that’s correct.” RAG and fine-tuning become relevant when you’re building product, not when you’re using the AI through a chat window.
FAQ
What does RAG stand for?
Retrieval-Augmented Generation. The model “retrieves” relevant documents from a separate library before “generating” its answer. The underlying model doesn’t change; you’re feeding it useful context at the right moment.
How much does fine-tuning cost?
Varies widely. A small fine-tuning run on OpenAI or Anthropic might cost a few hundred dollars in compute plus the cost of high-quality training data preparation. A serious enterprise fine-tune can run into the tens of thousands. The largest cost is usually data preparation, not compute.
Does Claude support fine-tuning?
Anthropic has historically been conservative about offering fine-tuning. As of mid-2026, Anthropic’s primary recommendation for customization is system prompts, project-level instructions, and the Claude Code skill system, rather than fine-tuning. OpenAI offers more direct fine-tuning support for some of its models.
Is RAG the same as a vector database?
RAG usually uses a vector database to find the relevant documents quickly, but the two aren’t the same thing. RAG is the workflow (retrieve documents, give them to the model); the vector database is the storage and lookup technology that powers the retrieval step.
Can I do RAG with Claude or ChatGPT directly?
Sort of. Claude Projects, ChatGPT custom GPTs, and similar features let you upload a small document library that the AI references in answers — this is a form of RAG without you setting up the infrastructure. For larger document corpora or production use, you’d build full RAG with a vector database (Pinecone, Weaviate, Qdrant, etc.).
Which one should I start with?
Prompting. Always prompting first. Spend at least two weeks on prompt engineering before considering RAG. Spend two months on RAG before considering fine-tuning. The order matters because the cost ratio is steep and most problems are solved at the cheapest tier.
The bottom line
Prompting solves most problems. RAG solves the “the AI needs to reference our library” problem. Fine-tuning solves the “we need this exact style at scale” problem.
Start at the bottom of the cost ladder. Move up only when the cheap option has genuinely failed for a real reason. The teams that go straight to fine-tuning are usually solving the wrong problem in an expensive way.
For background: what is an API?, what is MCP?, what are Managed Agents?, best Claude prompts. Daily AI fundamentals in our free Beginners in AI newsletter.
Sources
- Anthropic, OpenAI, and Mistral fine-tuning documentation and pricing pages.
- OpenAI’s public guidance on when to use prompting, retrieval, and fine-tuning.
- Pinecone, Weaviate, and Qdrant vector-database documentation for the RAG implementation patterns.
- Internal practice and ongoing experiments at Beginners in AI on prompt-vs-RAG-vs-tuning tradeoffs.
Learn Our Proven AI Frameworks
Beginners in AI created 6 branded frameworks to help you master AI: STACK for prompting, BUILD for business, ADAPT for learning, THINK for decisions, CRAFT for content, and CRON for automation.
Get Smarter About AI Every Morning
Free daily newsletter — one story, one tool, one tip. Plain English, no jargon.
Free forever. Unsubscribe anytime.
You May Also Like
- What is an API?
- What is MCP?
- What Are Managed Agents?
- Best Claude prompts
- The Complete Guide to AI in 2026
- AI Glossary: 100+ Terms
Two ways to go further
The AI Prompt Library
1,000+ ready-to-use prompts for Claude, ChatGPT, and Gemini. Stop staring at a blank box.
Get it for $39 →2-Hour Live AI Crash Course
A private, beginner-friendly session across Claude, ChatGPT, Gemini, and the wider landscape.
Book for $125 →