deleteFineTunelModel method
Delete a fine-tuned model. You must have the Owner role in your organization. Return a Map
Implementation
Future<Map<String, dynamic>> deleteFineTunelModel({required model}) async {
try {
_checkApi(values: [model]);
final result =
await service.deleteFineTunelModel(model: model, apiKey: _apiKey);
return result;
} catch (e) {
throw _exceptionCheck(e);
}
}