Skip to content

Commit 64ed1a6

Browse files
anmolg1997copybara-github
authored andcommitted
fix(cli): correct console URL path after adk deploy agent_engine
Merge #5338 ### Summary After deploying an agent with `adk deploy agent_engine`, the generated Google Cloud Console URL uses the outdated path `agent-platform/runtimes`, which no longer resolves to the correct page. ### Changes **`src/google/adk/cli/cli_deploy.py`** Updated the URL path in `_print_agent_engine_url` from: ``` https://console.cloud.google.com/agent-platform/runtimes/locations/... ``` to: ``` https://console.cloud.google.com/vertex-ai/agents/agent-engines/locations/... ``` Fixes #5336 COPYBARA_INTEGRATE_REVIEW=#5338 from anmolg1997:fix/deploy-console-url 1fb352e PiperOrigin-RevId: 900308294
1 parent 7686848 commit 64ed1a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/google/adk/cli/cli_deploy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -817,7 +817,7 @@ def _print_agent_engine_url(resource_name: str) -> None:
817817
engine_id = parts[5]
818818

819819
url = (
820-
'https://console.cloud.google.com/agent-platform/runtimes'
820+
'https://console.cloud.google.com/vertex-ai/agents/agent-engines'
821821
f'/locations/{region}/agent-engines/{engine_id}/playground'
822822
f'?project={project_id}'
823823
)

0 commit comments

Comments
 (0)