__init__.py 466 Bytes
Newer Older
1
from vllm.transformers_utils.configs.mpt import MPTConfig
codethazine's avatar
codethazine committed
2
from vllm.transformers_utils.configs.baichuan import BaiChuanConfig
Zhuohan Li's avatar
Zhuohan Li committed
3
4
5
6
# 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
7
8
9

__all__ = [
    "MPTConfig",
codethazine's avatar
codethazine committed
10
    "BaiChuanConfig",
Zhuohan Li's avatar
Zhuohan Li committed
11
    "RWConfig",
12
]