feat(model): Support Mixtral-8x7B (#959)

This commit is contained in:
Fangyin Cheng
2023-12-21 16:46:29 +08:00
committed by GitHub
parent aec124a5f1
commit 6b982e2879
17 changed files with 1386 additions and 688 deletions

View File

@@ -405,7 +405,7 @@ def stop_model_controller(port: int):
def _model_dynamic_factory() -> Callable[[None], List[Type]]:
from dbgpt.model.model_adapter import _dynamic_model_parser
from dbgpt.model.adapter.model_adapter import _dynamic_model_parser
param_class = _dynamic_model_parser()
fix_class = [ModelWorkerParameters]