Skip to content

Commit

Permalink
[BUGFIX] Fix UnspecifiedPlatform package name (vllm-project#11916)
Browse files Browse the repository at this point in the history
Signed-off-by: Kunshang Ji <kunshang.ji@intel.com>
Rate limit · GitHub

Access has been restricted

You have triggered a rate limit.

Please wait a few minutes before you try again;
in some cases this may take up to an hour.

jikunshang authored and abmfy committed Jan 24, 2025
1 parent 017dc48 commit 1b718d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vllm/platforms/__init__.py
Original file line number Diff line number Diff line change
@@ -179,7 +179,7 @@ def resolve_current_platform_cls_qualname() -> str:
logger.info("Automatically detected platform %s.",
activated_builtin_plugins[0])
else:
platform_cls_qualname = "vllm.interface.UnspecifiedPlatform"
platform_cls_qualname = "vllm.platforms.interface.UnspecifiedPlatform"
logger.info(
"No platform detected, vLLM is running on UnspecifiedPlatform")
return platform_cls_qualname

0 comments on commit 1b718d6

Please sign in to comment.