Files
ailine/frontend/__init__.py

9 lines
232 B
Python
Raw Normal View History

2026-04-16 03:21:38 +08:00
"""
AI Agent 前端模块
采用分层架构设计包含配置状态API客户端和UI组件
"""
from frontend.logger import debug, info, warning, error
2026-04-16 03:21:38 +08:00
__version__ = "2.0.0"
__all__ = ["debug", "info", "warning", "error"]