Files
ailine/frontend/__init__.py

9 lines
232 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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