Skip to content

Commit f7389f4

Browse files
authored
[Doc] Add Baichuan 13B to supported models (#656)
1 parent 55fe8a8 commit f7389f4

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ vLLM is flexible and easy to use with:
4242

4343
vLLM seamlessly supports many Huggingface models, including the following architectures:
4444

45-
- Baichuan-7B (`baichuan-inc/Baichuan-7B`)
45+
- Baichuan (`baichuan-inc/Baichuan-7B`, `baichuan-inc/Baichuan-13B-Chat`, etc.)
4646
- BLOOM (`bigscience/bloom`, `bigscience/bloomz`, etc.)
4747
- Falcon (`tiiuae/falcon-7b`, `tiiuae/falcon-40b`, `tiiuae/falcon-rw-7b`, etc.)
4848
- GPT-2 (`gpt2`, `gpt2-xl`, etc.)

docs/source/models/supported_models.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ Alongside each architecture, we include some popular models that use it.
1515
- Models
1616
- Example HuggingFace Models
1717
* - :code:`BaiChuanForCausalLM`
18-
- Baichuan-7B
19-
- :code:`baichuan-inc/Baichuan-7B`.
18+
- Baichuan
19+
- :code:`baichuan-inc/Baichuan-7B`, `baichuan-inc/Baichuan-13B-Chat`, etc.
2020
* - :code:`BloomForCausalLM`
2121
- BLOOM, BLOOMZ, BLOOMChat
2222
- :code:`bigscience/bloom`, :code:`bigscience/bloomz`, etc.

vllm/model_executor/models/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
from vllm.model_executor.models.baichuan import BaiChuanForCausalLM, BaichuanForCausalLM
1+
from vllm.model_executor.models.baichuan import (BaiChuanForCausalLM,
2+
BaichuanForCausalLM)
23
from vllm.model_executor.models.bloom import BloomForCausalLM
34
from vllm.model_executor.models.falcon import FalconForCausalLM
45
from vllm.model_executor.models.gpt2 import GPT2LMHeadModel

0 commit comments

Comments
 (0)