From d61472fc2b829fd5bc157effc28d0044c08bb18a Mon Sep 17 00:00:00 2001 From: Ashwin Bharambe Date: Fri, 10 Oct 2025 09:26:22 -0700 Subject: [PATCH] fix(mypy): fix wrong attribute access --- 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