mirror of
https://github.com/w-okada/voice-changer.git
synced 2025-01-24 14:05:00 +03:00
10 lines
210 B
Python
10 lines
210 B
Python
|
from typing import Protocol
|
||
|
|
||
|
from voice_changer.utils.LoadModelParams import LoadModelParams
|
||
|
|
||
|
|
||
|
class ModelSlotGenerator(Protocol):
|
||
|
@classmethod
|
||
|
def loadModel(self, params: LoadModelParams):
|
||
|
...
|