[Misc] fix typo: add missing space in lora adapter error message (#12564)

Signed-off-by: Beim <beim2015@outlook.com>
This commit is contained in:
Beim 2025-01-31 04:39:22 +13:00 committed by GitHub
parent a2769032ca
commit 41bf5612f5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -203,7 +203,7 @@ class OpenAIServingModels:
for lora_request in self.lora_requests):
return create_error_response(
message=
f"The lora adapter '{request.lora_name}' has already been"
f"The lora adapter '{request.lora_name}' has already been "
"loaded.",
err_type="InvalidUserInput",
status_code=HTTPStatus.BAD_REQUEST)