2023-11-07 08:09:33 +08:00
|
|
|
from vllm.transformers_utils.configs.chatglm import ChatGLMConfig
|
2023-11-16 01:19:39 -08:00
|
|
|
from vllm.transformers_utils.configs.mpt import MPTConfig
|
2023-08-02 14:04:39 -07:00
|
|
|
# RWConfig is for the original tiiuae/falcon-40b(-instruct) and
|
|
|
|
|
# tiiuae/falcon-7b(-instruct) models. Newer Falcon models will use the
|
|
|
|
|
# `FalconConfig` class from the official HuggingFace transformers library.
|
|
|
|
|
from vllm.transformers_utils.configs.falcon import RWConfig
|
2023-07-03 16:47:53 -07:00
|
|
|
|
|
|
|
|
__all__ = [
|
2023-11-07 08:09:33 +08:00
|
|
|
"ChatGLMConfig",
|
2023-11-16 01:19:39 -08:00
|
|
|
"MPTConfig",
|
2023-08-02 14:04:39 -07:00
|
|
|
"RWConfig",
|
2023-07-03 16:47:53 -07:00
|
|
|
]
|