setLoraWeightsPath method
Sets the path to the lora weights file. Use this method to manage the lora weights file manually.
This method can be safely called multiple times. Lora weights will be loaded only if they doesn't exist.
To reload the lora weights, call deleteLoraWeights first.
Implementation
@override
Future<void> setLoraWeightsPath(String path) {
_loraPath = path;
return Future.value();
}