Skip to content

Commit c26434e

Browse files
simondanielssonchoprahetarth
authored andcommitted
[Bugfix] Typos in error message for missing model config file (vllm-project#25339)
Signed-off-by: simondanielsson <[email protected]>
1 parent 54d0bf0 commit c26434e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

vllm/transformers_utils/config.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -524,10 +524,10 @@ def get_config(
524524
else:
525525
raise ValueError(
526526
"Could not detect config format for no config file found. "
527-
"With config_format 'auto', ensure your model has either"
528-
"config.json (HF format) or params.json (Mistral format)."
529-
"Otherwise please specify your_custom_config_format"
530-
"in engine args for customized config parser")
527+
"With config_format 'auto', ensure your model has either "
528+
"config.json (HF format) or params.json (Mistral format). "
529+
"Otherwise please specify your_custom_config_format "
530+
"in engine args for customized config parser.")
531531

532532
except Exception as e:
533533
error_message = (

0 commit comments

Comments
 (0)