x
This commit is contained in:
@@ -106,6 +106,7 @@
|
|||||||
"max_num_seqs": "64",
|
"max_num_seqs": "64",
|
||||||
"max_tokens": "32768",
|
"max_tokens": "32768",
|
||||||
"gpu_util": "0.98",
|
"gpu_util": "0.98",
|
||||||
|
"model_impl": "transformers",
|
||||||
"tool_call_parser": "qwen3_xml",
|
"tool_call_parser": "qwen3_xml",
|
||||||
"enable_auto_tool_choice": true,
|
"enable_auto_tool_choice": true,
|
||||||
"served_model_name": "Qwen3.5-27B-FP8",
|
"served_model_name": "Qwen3.5-27B-FP8",
|
||||||
@@ -118,6 +119,7 @@
|
|||||||
"max_num_seqs": "64",
|
"max_num_seqs": "64",
|
||||||
"max_tokens": "32768",
|
"max_tokens": "32768",
|
||||||
"gpu_util": "0.98",
|
"gpu_util": "0.98",
|
||||||
|
"model_impl": "transformers",
|
||||||
"tool_call_parser": "qwen3_xml",
|
"tool_call_parser": "qwen3_xml",
|
||||||
"enable_auto_tool_choice": true,
|
"enable_auto_tool_choice": true,
|
||||||
"served_model_name": "Qwen3.5-35B-A3B-GPTQ-Int4",
|
"served_model_name": "Qwen3.5-35B-A3B-GPTQ-Int4",
|
||||||
|
|||||||
@@ -145,6 +145,11 @@ def launch_model(model_id, config, model_path, gpu_count):
|
|||||||
"--dtype", "auto"
|
"--dtype", "auto"
|
||||||
]
|
]
|
||||||
|
|
||||||
|
model_impl = config.get("model_impl") or os.getenv("VLLM_MODEL_IMPL")
|
||||||
|
if model_impl:
|
||||||
|
cmd.extend(["--model-impl", str(model_impl)])
|
||||||
|
log(f"Added model implementation: {model_impl}")
|
||||||
|
|
||||||
if config.get("trust_remote"):
|
if config.get("trust_remote"):
|
||||||
cmd.append("--trust-remote-code")
|
cmd.append("--trust-remote-code")
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user