Skip to content

Commit a12c016

Browse files
committed
[Feature][Frontend]: Deprecate --enable-reasoning
Signed-off-by: chaunceyjiang <chaunceyjiang@gmail.com>
1 parent da5d4d0 commit a12c016

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

vllm/engine/arg_utils.py

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -803,11 +803,14 @@ def add_cli_args(parser: FlexibleArgumentParser) -> FlexibleArgumentParser:
803803
action="store_true",
804804
default=False,
805805
help=
806-
"[DEPRECATED] Use --reasoning-parser instead. " \
806+
"[DEPRECATED] " \
807+
"The --enable-reasoning flag is deprecated as of v0.8.6. "
808+
"Use --reasoning-parser to specify " \
809+
"the reasoning parser backend instead. "
810+
"This flag (--enable-reasoning) will be " \
811+
"removed in a future version. "
807812
"When --reasoning-parser is specified, " \
808-
"it is automatically set to True. "
809-
"Whether to enable reasoning_content for the model. "
810-
"If enabled, the model will be able to generate reasoning content."
813+
"reasoning mode is automatically enabled."
811814
)
812815

813816
return parser

0 commit comments

Comments
 (0)