From 559756214b770d0405939a05172804221c2f5677 Mon Sep 17 00:00:00 2001 From: Tyler Michael Smith Date: Mon, 14 Jul 2025 12:54:52 -0400 Subject: [PATCH] Change default model to Qwen3-0.6B (#20335) Signed-off-by: Tyler Michael Smith --- vllm/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vllm/config.py b/vllm/config.py index d9f356c5c60aa..dc8acad25a318 100644 --- a/vllm/config.py +++ b/vllm/config.py @@ -226,7 +226,7 @@ ModelDType = Literal["auto", "half", "float16", "bfloat16", "float", "float32"] class ModelConfig: """Configuration for the model.""" - model: str = "facebook/opt-125m" + model: str = "Qwen/Qwen3-0.6B" """Name or path of the Hugging Face model to use. It is also used as the content for `model_name` tag in metrics output when `served_model_name` is not specified."""