Patryk Studzinski
first-imrpvement-commit
a7fd202
raw
history blame
406 Bytes
"""
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",
]