From 1fb352e9262e58165eed5eb7b119a655a4860540 Mon Sep 17 00:00:00 2001 From: Anmol Jaiswal <68013660+anmolg1997@users.noreply.github.com> Date: Wed, 15 Apr 2026 08:59:12 +0530 Subject: [PATCH] fix(cli): correct console URL path after adk deploy agent_engine The generated URL used the outdated path `agent-platform/runtimes` which no longer resolves in the Google Cloud Console. Updated to the correct path `vertex-ai/agents/agent-engines`. Fixes #5336 --- src/google/adk/cli/cli_deploy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/google/adk/cli/cli_deploy.py b/src/google/adk/cli/cli_deploy.py index ca06b1704f..bda96497b0 100644 --- a/src/google/adk/cli/cli_deploy.py +++ b/src/google/adk/cli/cli_deploy.py @@ -817,7 +817,7 @@ def _print_agent_engine_url(resource_name: str) -> None: engine_id = parts[5] url = ( - 'https://console.cloud.google.com/agent-platform/runtimes' + 'https://console.cloud.google.com/vertex-ai/agents/agent-engines' f'/locations/{region}/agent-engines/{engine_id}/playground' f'?project={project_id}' )