Spaces:
Sleeping
Sleeping
""" | |
provide a unified interface for logging and data validation | |
""" | |
from .logger import log, setup_logger | |
# import data validation classes | |
from .validators import ChatRequest, ChatResponse | |
# define the __all__ variable to control what is imported when using 'from module import *' | |
__all__ = [ | |
'log', | |
'setup_logger', | |
'ChatRequest', | |
'ChatResponse' | |
] | |
# version information | |
__version__ = '1.0.0' |