Use it like any model
The fine-tuned model gets an ID like ft:gpt-4.1-mini-2025-04-14:my-org:my-suffix:abc123. Pass that ID to client.chat.completions.create as the model parameter — everything else is identical to using the base model.
Always evaluate against the base
Before swapping the fine-tuned model into production, run an evaluation that compares it head-to-head with the base model on a held-out test set. The fine-tuned version should win on your target metric AND not regress on a general-capability suite.
Limitations of the managed path
You don't get the model weights. You can only call the model through the API. This means vendor lock-in, you can't deploy locally, and you can't customize the serving infrastructure. For full control, use open-source fine-tuning (Tracks 4–5).