From 679ec4618daf94bbd3469a518d2d238820ab7b52 Mon Sep 17 00:00:00 2001 From: yansh97 Date: Tue, 24 Dec 2024 04:20:44 +0800 Subject: [PATCH] [Doc] Fix typo in the help message of '--guided-decoding-backend' (#11440) --- vllm/engine/arg_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vllm/engine/arg_utils.py b/vllm/engine/arg_utils.py index 7aa45b7958e26..997a952240ecb 100644 --- a/vllm/engine/arg_utils.py +++ b/vllm/engine/arg_utils.py @@ -373,7 +373,7 @@ def add_cli_args(parser: FlexibleArgumentParser) -> FlexibleArgumentParser: choices=['outlines', 'lm-format-enforcer', 'xgrammar'], help='Which engine will be used for guided decoding' ' (JSON schema / regex etc) by default. Currently support ' - 'https://github.com/outlines-dev/outlines,' + 'https://github.com/outlines-dev/outlines, ' 'https://github.com/mlc-ai/xgrammar, and ' 'https://github.com/noamgat/lm-format-enforcer.' ' Can be overridden per request via guided_decoding_backend'