We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97fa40f commit 549dcc9Copy full SHA for 549dcc9
pydantic_ai_slim/pydantic_ai/providers/google.py
@@ -28,13 +28,11 @@ class GoogleProvider(Provider[Client]):
28
29
@property
30
def name(self) -> str:
31
- # type: ignore[reportPrivateUsage]
32
- return 'google-vertex' if self._client._api_client.vertexai else 'google-gla'
+ return 'google-vertex' if self._client._api_client.vertexai else 'google-gla' # type: ignore[reportPrivateUsage]
33
34
35
def base_url(self) -> str:
36
37
- return str(self._client._api_client._http_options.base_url)
+ return str(self._client._api_client._http_options.base_url) # type: ignore[reportPrivateUsage]
38
39
40
def client(self) -> Client:
0 commit comments