Spaces:
Sleeping
Sleeping
File size: 406 Bytes
a7fd202 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | """
Models module - LLM implementations and registry.
"""
from app.models.base_llm import BaseLLM
from app.models.huggingface_local import HuggingFaceLocal
from app.models.huggingface_inference_api import HuggingFaceInferenceAPI
from app.models.registry import registry, MODEL_CONFIG
__all__ = [
"BaseLLM",
"HuggingFaceLocal",
"HuggingFaceInferenceAPI",
"registry",
"MODEL_CONFIG",
]
|