SingingSDS / modules /llm /__init__.py
jhansss's picture
add more llms; add system prompt support; add device=auto
780954b
raw
history blame contribute delete
369 Bytes
from .base import AbstractLLMModel
from .registry import LLM_MODEL_REGISTRY, get_llm_model, register_llm_model
from .gemma import GemmaLLM
from .qwen3 import Qwen3LLM
from .gemini import GeminiLLM
from .minimax import MiniMaxLLM
from .llama import LlamaLLM
__all__ = [
"AbstractLLMModel",
"get_llm_model",
"register_llm_model",
"LLM_MODEL_REGISTRY",
]