Travel_Assistant / utils /__init__.py
Eliot0110's picture
feat: 添加utils工具模块
e425487
raw
history blame contribute delete
413 Bytes
"""
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'