Files
2025-11-13 22:49:59 +08:00

10 lines
151 B
Python

"""
Report Engine LLM子模块。
目前主要暴露 OpenAI 兼容的 `LLMClient` 封装。
"""
from .base import LLMClient
__all__ = ["LLMClient"]