GOXY / app /__init__.py
lasagnakanada
Deploy GOXY ML Service to HuggingFace Space
3d6cc8a
raw
history blame contribute delete
678 Bytes
"""
GOXY ML/AI Service
Production-ready REST API service providing AI-powered text generation,
content moderation, and feedback collection.
"""
__version__ = "0.1.0"
__author__ = "GOXY Team"
__email__ = "[email protected]"
# Lazily expose commonly referenced subpackages to support attribute-based resolution in tests
# without importing heavy dependencies during module import.
def __getattr__(name: str):
if name == "api":
from importlib import import_module
return import_module(f"{__name__}.api")
raise AttributeError(f"module '{__name__}' has no attribute '{name}'")
# Package metadata
__all__ = ["__version__", "__author__", "__email__", "api"]