Skip to content

Commit b5825ad

Browse files
author
Alec Solder
committed
Better warning message
Signed-off-by: Alec Solder <alecs@fb.com>
1 parent 8f6264e commit b5825ad

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

vllm/config/structured_outputs.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,10 @@ def _validate_structured_output_config(self) -> Self:
7878
and self.reasoning_parser not in valid_reasoning_parsers
7979
):
8080
logger.warning(
81-
"Reasoning parser %s not defined in reasoning_parser_plugin "
82-
"argument. Assuming it is registered to the "
83-
"ReasoningParserManager programmatically.",
81+
"Reasoning parser %s not found among built-in parsers or "
82+
"reasoning_parser_plugin argument. Assuming it will be "
83+
"registered to the ReasoningParserManager programmatically "
84+
"before use.",
8485
self.reasoning_parser,
8586
)
8687

0 commit comments

Comments
 (0)