9 lines
232 B
Python
9 lines
232 B
Python
"""
|
||
AI Agent 前端模块
|
||
采用分层架构设计,包含配置、状态、API客户端和UI组件
|
||
"""
|
||
|
||
from frontend.logger import debug, info, warning, error
|
||
|
||
__version__ = "2.0.0"
|
||
__all__ = ["debug", "info", "warning", "error"] |