unsloth/backend/core/inference/__init__.py
2026-02-02 05:48:09 +00:00

9 lines
212 B
Python

"""
Inference submodule - Inference backend for model loading and generation
"""
from .inference import InferenceBackend, get_inference_backend
__all__ = [
'InferenceBackend',
'get_inference_backend',
]