__init__.py 463 Bytes
Newer Older
GoHomeToMacDonal's avatar
GoHomeToMacDonal committed
1
from vllm.transformers_utils.configs.chatglm import ChatGLMConfig
2
from vllm.transformers_utils.configs.mpt import MPTConfig
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

__all__ = [
GoHomeToMacDonal's avatar
GoHomeToMacDonal committed
9
    "ChatGLMConfig",
10
    "MPTConfig",
Zhuohan Li's avatar
Zhuohan Li committed
11
    "RWConfig",
12
]