-
-
Notifications
You must be signed in to change notification settings - Fork 10.6k
Closed
liuyhwangyh/vllm
#1Labels
bugSomething isn't workingSomething isn't working
Description
Your current environment
The output of `python collect_env.py`
🐛 Describe the bug
the related code in the previous version :
if os.environ.get("VLLM_USE_MODELSCOPE", "False").lower() == "true":
now the code:
if VLLM_USE_MODELSCOPE:
but the VLLM_USE_MODELSCOPE
is set to string "true" by
VLLM_USE_MODELSCOPE = os.environ.get("VLLM_USE_MODELSCOPE",
"False").lower() == "true"
so, VLLM_USE_MODELSCOPE will never work
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working