# What this guide covers
# The customization spectrum in plain terms AWS frames customization as a staircase. Each step increases implementation effort, cost, and data needs while giving you more control and domain specificity. The staircase groups into three categories:
- ENHANCE: Wrap the model with tooling and data without changing weights. Steps 3–5 include Retrieval-Augmented Generation (RAG) to ground outputs in documents, caching to reduce repeated expense, and distillation to produce a smaller student model that replicates teacher outputs faster and cheaper.
# Decision flow and escalation signals AWS provides escalation diagrams tied to measurable signals. Use these practical signals to decide when to move up:
- If off-the-shelf accuracy is acceptable, stop at calling the model directly.
- If you need repeatable output across many prompts, invest in prompt evaluation and optimization rather than immediate training.
- If domain facts or documents are causing hallucinations, add RAG to ground responses before training.
- If domain-specific accuracy still fails after ENHANCE steps, escalate to fine-tuning or continued pre-training.
- Reserve Amazon Nova Forge for cases where only a custom-built model will meet your needs.
The guide's operational principle: most workloads won't need to go past the third step (RAG-type enhancements).
# AWS service mapping (practical uses)
- Amazon Bedrock: access multiple foundation models (Anthropic Claude, Amazon Nova, Llama, Mistral, and others) through a single API for Steps 1–3.
- Amazon SageMaker: support for training workflows, fine-tuning, and operationalizing models when you change weights.
# A simple analogy that helps allocate effort
# Practical checklist for a project lead
- Run a baseline with a foundation model via Bedrock for your core task.
- If outputs are inconsistent, invest a day or two in prompt engineering and prompt evaluation metrics.
- If factual grounding is the issue, add RAG using your document store and measure hallucination reduction.
- If cost or latency is high but accuracy is validated, explore distillation to a smaller model.
- Only after these steps fail on accuracy or domain relevance, budget for fine-tuning, continued pre-training, or Nova Forge.
# Bottom line Follow the staircase: inexpensive changes first, heavier interventions only when measurable signals demand them. AWS provides both the models and the mapped services to execute each step, so pick the least disruptive option that meets your accuracy, latency, and domain requirements.