getFineTunedModels method
Get fine-tuned models
Implementation
Future<List<AIModel>> getFineTunedModels() async {
final allModels = await models();
return allModels
.where(
(model) => model.ownedBy != 'openai' && model.ownedBy != 'system')
.toList();
}