jamtur01's picture
Upload folder using huggingface_hub
9c6594c verified
raw
history blame contribute delete
272 Bytes
"""Artifact state."""
from __future__ import annotations
from enum import Enum
class ArtifactState(Enum):
PENDING = "PENDING"
COMMITTED = "COMMITTED"
DELETED = "DELETED"
GARBAGE_COLLECTED = "GARBAGE_COLLECTED"
PENDING_DELETION = "PENDING_DELETION"