Files
vllm/vllm/transformers_utils/configs/__init__.py

13 lines
463 B
Python
Raw Normal View History

2023-11-07 08:09:33 +08:00
from vllm.transformers_utils.configs.chatglm import ChatGLMConfig
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",
"MPTConfig",
2023-08-02 14:04:39 -07:00
"RWConfig",
2023-07-03 16:47:53 -07:00
]