Spaces:
Sleeping
Sleeping
| """ | |
| 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", | |
| ] | |