Files
Aether/src/models/__init__.py

11 lines
255 B
Python
Raw Normal View History

2025-12-10 20:52:44 +08:00
"""
统一的模型定义模块
"""
from .api import * # noqa: F401, F403
from .claude import * # noqa: F401, F403
from .database import * # noqa: F401, F403
from .openai import * # noqa: F401, F403
__all__ = ["claude", "database", "openai", "api"]