__init__.py 709 Bytes
Newer Older
1
from vllm.transformers_utils.configs.baichuan import BaiChuanConfig
GoHomeToMacDonal's avatar
GoHomeToMacDonal committed
2
from vllm.transformers_utils.configs.chatglm import ChatGLMConfig
3
from vllm.transformers_utils.configs.mpt import MPTConfig
Isotr0py's avatar
Isotr0py committed
4
from vllm.transformers_utils.configs.olmo import OLMoConfig
5
from vllm.transformers_utils.configs.qwen import QWenConfig
Zhuohan Li's avatar
Zhuohan Li committed
6
7
8
9
# 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
10
11

__all__ = [
12
    "BaiChuanConfig",
GoHomeToMacDonal's avatar
GoHomeToMacDonal committed
13
    "ChatGLMConfig",
14
    "MPTConfig",
Isotr0py's avatar
Isotr0py committed
15
    "OLMoConfig",
16
    "QWenConfig",
Zhuohan Li's avatar
Zhuohan Li committed
17
    "RWConfig",
18
]