Model-based reinforcement learning uses a learned world model in one of two ways: as a source of imagined rollouts to train a policy without touching the real environment (imagination-based training, as in DreamerV3), or as a component of online planning, where the model is queried at decision time to simulate candidate action sequences and select the best (model predictive control, or tree-search variants). The former amortizes cost into training; the latter spends compute at inference time in exchange for adaptability to novel situations the training distribution never covered.
The central engineering risk in both modes is model exploitation: a policy trained purely inside an imperfect world model will happily discover and exploit the model's own blind spots, producing behavior that looks excellent in imagination and fails in reality. Mitigations — model ensembles, uncertainty-aware planning, periodic real-environment grounding — are not optional extras; they are what makes model-based control trustworthy rather than merely impressive in simulation.