File size: 281 Bytes
236083b | 1 2 3 4 5 6 7 8 9 10 11 | """Minimal LitGPT interface for the Multiscreen inference runtime.
Training APIs and Lightning are intentionally not imported here.
"""
from litgpt.config import Config
from litgpt.model import GPT
from litgpt.tokenizer import Tokenizer
__all__ = ["Config", "GPT", "Tokenizer"]
|