Skip to content

GoogleCredentialsProvider

autogen.tools.experimental.google.authentication.GoogleCredentialsProvider #

Bases: Protocol

A protocol for Google credentials provider.

host property #

host

The host from which to get the credentials.

port property #

port

The port from which to get the credentials.

get_credentials #

get_credentials()

Get the Google credentials.

Source code in autogen/tools/experimental/google/authentication/credentials_provider.py
def get_credentials(self) -> Optional["Credentials"]:  # type: ignore[no-any-unimported]
    """Get the Google credentials."""
    ...