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