Skip to content

Commit 3481e40

Browse files
authored
[chore] Remove models weight on S3 logic (vllm-project#27725)
Signed-off-by: kevin <[email protected]>
1 parent 5e72216 commit 3481e40

File tree

2 files changed

+0
-139
lines changed

2 files changed

+0
-139
lines changed

vllm/engine/arg_utils.py

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@
7575
from vllm.plugins import load_general_plugins
7676
from vllm.ray.lazy_utils import is_in_ray_actor, is_ray_initialized
7777
from vllm.reasoning import ReasoningParserManager
78-
from vllm.test_utils import MODEL_WEIGHTS_S3_BUCKET, MODELS_ON_S3
7978
from vllm.transformers_utils.config import (
8079
get_model_path,
8180
is_interleaved,
@@ -1126,15 +1125,6 @@ def create_model_config(self) -> ModelConfig:
11261125
if check_gguf_file(self.model):
11271126
self.quantization = self.load_format = "gguf"
11281127

1129-
# NOTE: This is to allow model loading from S3 in CI
1130-
if (
1131-
not isinstance(self, AsyncEngineArgs)
1132-
and envs.VLLM_CI_USE_S3
1133-
and self.model in MODELS_ON_S3
1134-
and self.load_format == "auto"
1135-
):
1136-
self.model = f"{MODEL_WEIGHTS_S3_BUCKET}/{self.model}"
1137-
11381128
if self.disable_mm_preprocessor_cache:
11391129
logger.warning(
11401130
"`--disable-mm-preprocessor-cache` is deprecated "

vllm/test_utils.py

Lines changed: 0 additions & 129 deletions
This file was deleted.

0 commit comments

Comments
 (0)