Spaces:
Running
Running
File size: 413 Bytes
e425487 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
"""
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' |