|
30 | 30 | # yapf conflicts with isort for this block
|
31 | 31 | # yapf: disable
|
32 | 32 | from vllm.transformers_utils.configs import (ChatGLMConfig, DeepseekVLV2Config,
|
33 |
| - EAGLEConfig, JAISConfig, |
34 |
| - KimiVLConfig, MedusaConfig, |
35 |
| - MLPSpeculatorConfig, |
36 |
| - Nemotron_Nano_VL_Config, |
37 |
| - NemotronConfig, |
38 |
| - OvisConfig, RWConfig, |
39 |
| - SpeculatorsConfig, |
40 |
| - Step3TextConfig, Step3VLConfig, |
41 |
| - UltravoxConfig) |
| 33 | + KimiVLConfig, MedusaConfig, |
| 34 | + MLPSpeculatorConfig, |
| 35 | + Nemotron_Nano_VL_Config, |
| 36 | + NemotronConfig, OvisConfig, |
| 37 | + RWConfig, SpeculatorsConfig, |
| 38 | + Step3TextConfig, Step3VLConfig, |
| 39 | + UltravoxConfig) |
42 | 40 |
|
43 | 41 | # yapf: enable
|
44 | 42 | from vllm.transformers_utils.configs.mistral import adapt_config_dict
|
@@ -936,7 +934,10 @@ def get_hf_file_bytes(file_name: str,
|
936 | 934 |
|
937 | 935 | if file_path is None:
|
938 | 936 | try:
|
939 |
| - hf_hub_file = hf_hub_download(model, file_name, revision=revision, token=_get_hf_token()) |
| 937 | + hf_hub_file = hf_hub_download(model, |
| 938 | + file_name, |
| 939 | + revision=revision, |
| 940 | + token=_get_hf_token()) |
940 | 941 | file_path = Path(hf_hub_file)
|
941 | 942 | except Exception:
|
942 | 943 | return None
|
|
0 commit comments