Correct capitalisation: VLLM -> vLLM (#14562)

Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com>
This commit is contained in:
Harry Mellor
2025-03-10 17:36:21 +01:00
committed by GitHub
parent dea985aef0
commit 3b352a2f92
18 changed files with 25 additions and 25 deletions

View File

@@ -164,7 +164,7 @@ environment_variables: dict[str, Callable[[], Any]] = {
"VERBOSE":
lambda: bool(int(os.getenv('VERBOSE', '0'))),
# Root directory for VLLM configuration files
# Root directory for vLLM configuration files
# Defaults to `~/.config/vllm` unless `XDG_CONFIG_HOME` is set
# Note that this not only affects how vllm finds its configuration files
# during runtime, but also affects how vllm installs its configuration
@@ -178,7 +178,7 @@ environment_variables: dict[str, Callable[[], Any]] = {
# ================== Runtime Env Vars ==================
# Root directory for VLLM cache files
# Root directory for vLLM cache files
# Defaults to `~/.cache/vllm` unless `XDG_CACHE_HOME` is set
"VLLM_CACHE_ROOT":
lambda: os.path.expanduser(
@@ -260,7 +260,7 @@ environment_variables: dict[str, Callable[[], Any]] = {
"VLLM_ENGINE_ITERATION_TIMEOUT_S":
lambda: int(os.environ.get("VLLM_ENGINE_ITERATION_TIMEOUT_S", "60")),
# API key for VLLM API server
# API key for vLLM API server
"VLLM_API_KEY":
lambda: os.environ.get("VLLM_API_KEY", None),