deleteFineTunelModel method

Future<Map<String, dynamic>> deleteFineTunelModel({
  1. required dynamic model,
})

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);
  }
}