File size: 678 Bytes
3d6cc8a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
"""
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"]