codefuse-chatbot/coagent/llm_models/__init__.py

8 lines
211 B
Python

from .openai_model import getExtraModel, getChatModelFromConfig
from .llm_config import LLMConfig, EmbedConfig
__all__ = [
"getExtraModel", "getChatModelFromConfig",
"LLMConfig", "EmbedConfig"
]