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>
  • Loading branch information
jikunshang authored Jan 10, 2025
1 parent ac2f3f7 commit 61af633
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
Expand Up @@ -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
Expand Down

0 comments on commit 61af633

Please sign in to comment.