Home » AI Models Guide » Fine-Tuning

What Is Fine-Tuning and When Should You Do It

Fine-tuning is the process of training an existing AI model on your own examples to change its default behavior. It makes the model better at specific tasks by showing it hundreds of input/output pairs that demonstrate exactly what you want. Most businesses do not need fine-tuning because RAG (retrieval-augmented generation) solves the more common problem of giving the model access to your data. Fine-tuning is for changing how the model responds, not what it knows.

Fine-Tuning vs RAG: The Key Difference

RAG gives the model access to your information at query time. When a customer asks about your return policy, RAG retrieves your return policy document and includes it in the prompt. The model reads it and answers based on what it finds. This is what most businesses need: a model that can answer questions using your specific data.

Fine-tuning changes the model's behavior itself. It does not add new information the model can look up. Instead, it trains the model to respond in a specific style, format, or pattern. After fine-tuning on hundreds of examples of your preferred customer support responses, the model naturally writes in your company's voice without needing those examples in every prompt.

When Fine-Tuning Makes Sense

When Fine-Tuning Is Unnecessary

Fine-Tuning on the Platform

The platform supports OpenAI fine-tuning through the fine-tuning app. You prepare a dataset of example conversations (input/output pairs), upload it, and the system trains a custom version of a GPT model on your examples. The fine-tuned model then appears as a model option in your chatbot and workflow configurations.

Important: Fine-tuning requires at least 50 to 100 high-quality examples, and 200 or more examples typically produce noticeably better results. Preparing these examples is the most time-consuming part of the process. Each example should demonstrate exactly the input/output behavior you want the model to learn.

The Practical Recommendation

For most businesses, start with RAG and a good system prompt. This solves 90% of use cases without the complexity and cost of fine-tuning. Only consider fine-tuning when you have a high-volume, specific use case where prompt engineering and RAG are not achieving the consistency or cost-efficiency you need.

Start with RAG and system prompts. Move to fine-tuning only when you outgrow them.

Get Started Free