We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f6264e commit b5825adCopy full SHA for b5825ad
vllm/config/structured_outputs.py
@@ -78,9 +78,10 @@ def _validate_structured_output_config(self) -> Self:
78
and self.reasoning_parser not in valid_reasoning_parsers
79
):
80
logger.warning(
81
- "Reasoning parser %s not defined in reasoning_parser_plugin "
82
- "argument. Assuming it is registered to the "
83
- "ReasoningParserManager programmatically.",
+ "Reasoning parser %s not found among built-in parsers or "
+ "reasoning_parser_plugin argument. Assuming it will be "
+ "registered to the ReasoningParserManager programmatically "
84
+ "before use.",
85
self.reasoning_parser,
86
)
87
0 commit comments