10 lines
172 B
Python
10 lines
172 B
Python
"""
|
|
Report Engine LLM模块
|
|
包含各种大语言模型的接口实现
|
|
"""
|
|
|
|
from .base import BaseLLM
|
|
from .gemini_llm import GeminiLLM
|
|
|
|
__all__ = ["BaseLLM", "GeminiLLM"]
|