deleteModelWithHttpInfo method
Delete a fine-tuned model. You must have the Owner role in your organization.
Note: This method returns the HTTP Response.
Parameters:
- String model (required): The model to delete
Implementation
Future<Response> deleteModelWithHttpInfo(String model,) async {
// ignore: prefer_const_declarations
final path = r'/models/{model}'
.replaceAll('{model}', model);
// ignore: prefer_final_locals
Object? postBody;
final queryParams = <QueryParam>[];
final headerParams = <String, String>{};
final formParams = <String, String>{};
const contentTypes = <String>[];
return apiClient.invokeAPI(
path,
'DELETE',
queryParams,
postBody,
headerParams,
formParams,
contentTypes.isEmpty ? null : contentTypes.first,
);
}