Skip to content

Commit e18749f

Browse files
shing100mgoin
andauthored
[Model] Support Solar Model (#8386)
Co-authored-by: Michael Goin <michael@neuralmagic.com>
1 parent d65798f commit e18749f

File tree

6 files changed

+834
-1
lines changed

6 files changed

+834
-1
lines changed

docs/source/models/supported_models.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,10 @@ Decoder-only Language Models
179179
- Starcoder2
180180
- :code:`bigcode/starcoder2-3b`, :code:`bigcode/starcoder2-7b`, :code:`bigcode/starcoder2-15b`, etc.
181181
-
182+
* - :code:`SolarForCausalLM`
183+
- EXAONE-3
184+
- :code:`upstage/solar-pro-preview-instruct`, etc.
185+
-
182186
* - :code:`XverseForCausalLM`
183187
- Xverse
184188
- :code:`xverse/XVERSE-7B-Chat`, :code:`xverse/XVERSE-13B-Chat`, :code:`xverse/XVERSE-65B-Chat`, etc.

vllm/model_executor/models/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@
6060
"StableLMEpochForCausalLM": ("stablelm", "StablelmForCausalLM"),
6161
"StableLmForCausalLM": ("stablelm", "StablelmForCausalLM"),
6262
"Starcoder2ForCausalLM": ("starcoder2", "Starcoder2ForCausalLM"),
63+
"SolarForCausalLM": ("solar", "SolarForCausalLM"),
6364
"ArcticForCausalLM": ("arctic", "ArcticForCausalLM"),
6465
"XverseForCausalLM": ("xverse", "XverseForCausalLM"),
6566
"Phi3SmallForCausalLM": ("phi3_small", "Phi3SmallForCausalLM"),

0 commit comments

Comments
 (0)