32 lines
900 B
Python
32 lines
900 B
Python
import torch
|
|
|
|
from typing import Optional
|
|
|
|
from text_generation_server.models.flash_mistral import BaseFlashMistral
|
|
from text_generation_server.models.custom_modeling.flash_mixtral_modeling import (
|
|
MixtralConfig,
|
|
FlashMixtralForCausalLM,
|
|
)
|
|
|
|
|
|
class FlashMixtral(BaseFlashMistral):
|
|
def __init__(
|
|
self,
|
|
model_id: str,
|
|
revision: Optional[str] = None,
|
|
quantize: Optional[str] = None,
|
|
speculator: Optional[str] = None,
|
|
dtype: Optional[torch.dtype] = None,
|
|
trust_remote_code: bool = False,
|
|
):
|
|
super(FlashMixtral, self).__init__(
|
|
config_cls=MixtralConfig,
|
|
model_cls=FlashMixtralForCausalLM,
|
|
model_id=model_id,
|
|
revision=revision,
|
|
quantize=quantize,
|
|
speculator=speculator,
|
|
dtype=dtype,
|
|
trust_remote_code=trust_remote_code,
|
|
)
|