ContentGuardEnv / server /env /__init__.py
mj064's picture
Upload folder using huggingface_hub
499375e verified
raw
history blame contribute delete
261 Bytes
from .tasks import TASKS
__all__ = ["ContentGuardEnv", "TASKS"]
def __getattr__(name):
if name == "ContentGuardEnv":
from .environment import ContentGuardEnv
return ContentGuardEnv
raise AttributeError(f"module '{__name__}' has no attribute '{name}'")