You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
File "/root/llm-project/LVLM/model/blip2.py", line 12, in <module>
from vllm import LLM
File "/root/anaconda3/envs/LVLM/lib/python3.10/site-packages/vllm/__init__.py", line 3, in <module>
from vllm.engine.arg_utils import AsyncEngineArgs, EngineArgs
File "/root/anaconda3/envs/LVLM/lib/python3.10/site-packages/vllm/engine/arg_utils.py", line 11, in <module>
from vllm.config import (CacheConfig, ConfigFormat, DecodingConfig,
File "/root/anaconda3/envs/LVLM/lib/python3.10/site-packages/vllm/config.py", line 13, in <module>
from vllm.logger import init_logger
File "/root/anaconda3/envs/LVLM/lib/python3.10/site-packages/vllm/logger.py", line 93, in <module>
_configure_vllm_root_logger()
File "/root/anaconda3/envs/LVLM/lib/python3.10/site-packages/vllm/logger.py", line 79, in _configure_vllm_root_logger
dictConfig(logging_config)
File "/root/anaconda3/envs/LVLM/lib/python3.10/logging/config.py", line 811, in dictConfig
dictConfigClass(config).configure()
File "/root/anaconda3/envs/LVLM/lib/python3.10/logging/config.py", line 547, in configure
raise ValueError('Unable to configure '
ValueError: Unable to configure formatter 'vllm'
Before submitting a new issue...
Make sure you already searched for relevant issues, and asked the chatbot living at the bottom right corner of the documentation page, which can answer lots of frequently asked questions.
The text was updated successfully, but these errors were encountered:
`logging_configuration.md` provides some sample logger configuration
that is no logner valid after vllm-project#10134. This PR fixes the sample config,
as well as provides backwards compatibility so that existing
configuration files won't break.
Closesvllm-project#10457
Signed-off-by: Russell Bryant <[email protected]>
`logging_configuration.md` provides some sample logger configuration
that is no logner valid after vllm-project#10134. This PR fixes the sample config,
as well as provides backwards compatibility so that existing
configuration files won't break.
Closesvllm-project#10457
Signed-off-by: Russell Bryant <[email protected]>
Your current environment
The output of `python collect_env.py`
Model Input Dumps
🐛 Describe the bug
Raise ValueError: Unable to configure formatter 'vllm' when using the latest version of vllm, using the previous verson don't break anything. Rolling back the vllm version to
0.6.2
resolves the issue.The content of
vllm_logging_config.json
can be found in https://github.com/vllm-project/vllm/blob/main/examples/logging_configuration.mdThe content is:
The related content in .env file:
The error:
Before submitting a new issue...
The text was updated successfully, but these errors were encountered: