mirror of
https://github.com/SillyTavern/SillyTavern-Extras.git
synced 2026-01-26 17:20:04 +00:00
12 lines
296 B
Python
12 lines
296 B
Python
from abc import ABC, abstractmethod
|
|
from typing import Dict, List
|
|
|
|
|
|
class IFacialMocapPoseConverter(ABC):
|
|
@abstractmethod
|
|
def convert(self, ifacialmocap_pose: Dict[str, float]) -> List[float]:
|
|
pass
|
|
|
|
@abstractmethod
|
|
def init_pose_converter_panel(self, parent):
|
|
pass |