From 548ccff368356067ad090d6ee9cd18571370107b Mon Sep 17 00:00:00 2001 From: Ashwin Bharambe Date: Fri, 10 Oct 2025 09:30:43 -0700 Subject: [PATCH] fix(mypy): fix wrong attribute access (#3770) --- llama_stack/providers/remote/inference/vllm/vllm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llama_stack/providers/remote/inference/vllm/vllm.py b/llama_stack/providers/remote/inference/vllm/vllm.py index 9e5f17c73..72a84c44f 100644 --- a/llama_stack/providers/remote/inference/vllm/vllm.py +++ b/llama_stack/providers/remote/inference/vllm/vllm.py @@ -83,7 +83,7 @@ class VLLMInferenceAdapter(OpenAIMixin): """ Skip the check when running without authentication. """ - if not self.config.api_token: + if not self.config.auth_credential: model_ids = [] async for m in self.client.models.list(): if m.id == model: # Found exact match