9 lines
212 B
Python
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',
|
|
]
|