diff --git a/src/groundlight/cli.py b/src/groundlight/cli.py index bf380bef..c15c4035 100644 --- a/src/groundlight/cli.py +++ b/src/groundlight/cli.py @@ -6,7 +6,6 @@ from groundlight import Groundlight from groundlight.client import ApiTokenError -from groundlight.config import API_TOKEN_MISSING_HELP_MESSAGE cli_app = typer.Typer( no_args_is_help=True, diff --git a/src/groundlight/client.py b/src/groundlight/client.py index 919197fb..47f0c28d 100644 --- a/src/groundlight/client.py +++ b/src/groundlight/client.py @@ -156,7 +156,8 @@ def _verify_connectivity(self) -> None: except Exception as e: msg = ( f"Error connecting to Groundlight using API token '{self.api_token_prefix}...'" - f" at endpoint '{self.endpoint}'. Endpoint might be invalid or unreachable?" + f" at endpoint '{self.endpoint}'. Endpoint might be invalid or unreachable? " + f"Check https://status.groundlight.ai/ for service status." ) raise GroundlightClientError(msg) from e