diff --git a/litellm/llms/vertex_httpx.py b/litellm/llms/vertex_httpx.py index 9fc9080b086..61920d4e6e8 100644 --- a/litellm/llms/vertex_httpx.py +++ b/litellm/llms/vertex_httpx.py @@ -26,12 +26,10 @@ class VertexAIError(Exception): class VertexLLM(BaseLLM): def __init__(self) -> None: - from google.auth.credentials import Credentials # type: ignore[import-untyped] - super().__init__() self.access_token: Optional[str] = None self.refresh_token: Optional[str] = None - self._credentials: Optional[Credentials] = None + self._credentials: Optional[Any] = None self.project_id: Optional[str] = None def load_auth(self) -> Tuple[Any, str]: