Metris's picture
Upload 78 files
236083b verified
Raw
History Blame Contribute Delete
281 Bytes
"""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"]