testlcm / models /interface_types.py
michaelj's picture
Upload folder using huggingface_hub
360d274
raw
history blame
156 Bytes
from enum import Enum
class InterfaceType(Enum):
WEBUI = "Web User Interface"
GUI = "Graphical User Interface"
CLI = "Command Line Interface"