deleteLoraWeights method
Deletes the loaded lora weights. Nothing happens if the lora weights are not loaded.
Also, closes the inference if it is initialized.
Implementation
@override
Future<void> deleteLoraWeights() {
_loraPath = null;
return Future.value();
}