jamtur01's picture
Upload folder using huggingface_hub
9c6594c verified
raw
history blame contribute delete
193 Bytes
#
from enum import Enum
"""
Call run.alert() to generate an email or Slack notification programmatically.
"""
class AlertLevel(Enum):
INFO = "INFO"
WARN = "WARN"
ERROR = "ERROR"