Fix call to logger.info_once (#17416)

Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com>
This commit is contained in:
Harry Mellor 2025-04-30 03:39:18 +01:00 committed by GitHub
parent 13698db634
commit d1f569b1b9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -191,9 +191,9 @@ class GrammarConfig:
if model_with_warn is not None and any_whitespace:
logger.info_once(
"%s model detected, consider setting "
f"{model_with_warn} model detected, consider setting "
"`disable_any_whitespace` to prevent runaway generation "
"of whitespaces.", model_with_warn)
"of whitespaces.")
# Validate the schema and raise ValueError here if it is invalid.
# This is to avoid exceptions in model execution, which will crash
# the engine worker process.