(self, wan_model)
| 13 | |
| 14 | class WanLoraWrapper: |
| 15 | def __init__(self, wan_model): |
| 16 | self.model = wan_model |
| 17 | self.lora_metadata = {} |
| 18 | # self.override_dict = {} # On CPU |
| 19 | |
| 20 | def load_lora(self, lora_path, lora_name=None): |
| 21 | if lora_name is None: |
nothing calls this directly
no outgoing calls
no test coverage detected