Home / Knowledge / AI & LLM
AI & LLM

Teaching AI New Tricks vs Just Asking Nicely

Fine-tuning vs prompting explained simply — what each one is, when to use which, and why most people never need to fine-tune

There are two main ways to get AI to behave the way you want: retrain it (fine-tuning) or tell it exactly what you want, every time (prompting).

Picture a coffee shop opening a new branch and training staff to make coffee to the shop’s exact recipe.

  • Fine-tuning = send the employee off for a month-long training program until they’ve memorized the recipe by heart — no manual needed anymore.
  • Prompting = just hand the employee the recipe card to read before every shift.

Both get the coffee made the same way, but the method, cost, and flexibility are very different.


What prompting is

Prompting is “telling” AI what you want each time you talk to it — what format, what context, what tone.

A simple example most people have already done:

“Write a thank-you email to a customer. Keep it formal, under 5 lines.”

Every time you chat with ChatGPT, Claude, or Gemini and give it an instruction like this — that’s prompting, plain and simple.

Strengths of prompting:

  • Works instantly, no waiting, no training needed
  • Fully editable any time — just type something new
  • Doesn’t require a large dataset, just a clear instruction
  • Practically zero extra cost (you’re using a subscription you already have)

Limitations:

  • You have to “remind” the AI every single time — in a very long conversation, it may drift from your first instructions
  • In automated systems (like a customer chatbot), sending the same long instructions on every call adds up in cost
  • For very complex, subtle behaviors (like a very specific writing style), no amount of instruction gets it perfectly right

What fine-tuning is

Fine-tuning means taking an existing AI model and “training it further” on your own example data, so it adjusts its behavior permanently — without needing to be told every time.

Back to the coffee shop: instead of handing the employee a recipe card every day, you send them to intensive training with the head chef, practicing the same drink hundreds of times until they know it by heart — no card required anymore.

Real-world examples:

  • A law firm fine-tunes AI on thousands of past contracts so it drafts new ones in the firm’s exact style
  • A brand wants its chatbot to reply in a very specific brand voice, so it trains on thousands of example conversations
  • A medical team fine-tunes a model on specialized medical terminology so it answers more accurately in that domain

Strengths of fine-tuning:

  • No need to write long instructions every time — the model already “knows” the desired behavior
  • More accurate and consistent for specialized tasks
  • Cheaper long-term if called very frequently (no repeated long prompts)

Limitations:

  • Needs a large set of example data (usually hundreds to thousands of examples or more)
  • Much higher time and cost — both compute and ongoing maintenance
  • Hard to change — adjusting behavior means retraining, not just typing a new instruction
  • Requires a decent level of technical know-how (or someone to hire who has it)

Side-by-side comparison

PromptingFine-tuning
AnalogyHand over a manual before each shiftSend them to retraining
Time to startInstantDays to weeks
CostVery lowHigh (data + training compute)
FlexibilityChange anytimeNeeds retraining to change
Best forGeneral tasks, experiments, solo useSpecialized tasks, high-volume repeated use, strict consistency needs

So which should you pick

Always start with prompting — almost every everyday task can be solved by writing a clearer instruction. Try a few different phrasings first (this technique is called prompt engineering). For the vast majority of everyday tasks, this is all you need.

Consider fine-tuning when:

  • You’ve maxed out prompting and the AI still doesn’t match the style/standard you need
  • You call AI the same way thousands of times a day (automation, chatbots, APIs)
  • You have enough good-quality example data (not just 10-20 examples)
  • You have the budget and a technical team to maintain it

For most people chatting with ChatGPT, Claude, or Gemini day to day — you almost never need to fine-tune anything. Good prompting is enough. Fine-tuning is for organizations with a genuinely specialized use case and the resources to back it.


Summary

Prompting is communicating clearly with AI each time. Fine-tuning is changing the AI’s underlying behavior permanently. It’s the difference between handing someone a manual and sending them through a month of retraining.

Simple rule to remember: try asking nicely first — only think about retraining if that’s not enough.

Further reading