10 lines
209 B
Python
10 lines
209 B
Python
from typing import Protocol
|
|
|
|
from voice_changer.utils.LoadModelParams import LoadModelParams
|
|
|
|
|
|
class ModelSlotGenerator(Protocol):
|
|
@classmethod
|
|
def loadModel(cls, params: LoadModelParams):
|
|
...
|