annabeth97c's picture
feat(src/sonicverse): Initial commit
7c34c28
raw
history blame contribute delete
215 Bytes
from multi_token.language_models.mistral import (
MistralLMMForCausalLM,
)
LANGUAGE_MODEL_CLASSES = [MistralLMMForCausalLM]
LANGUAGE_MODEL_NAME_TO_CLASS = {cls.__name__: cls for cls in LANGUAGE_MODEL_CLASSES}