Skip to content

Commit 6fba71e

Browse files
committed
fix: correct Agent Engine console URL path
Add missing /agent-engines/ segment to the console URL so playground and console links route correctly.
1 parent f795d75 commit 6fba71e

File tree

1 file changed

+2
-2
lines changed
  • agent_starter_pack/deployment_targets/agent_engine/python/{{cookiecutter.agent_directory}}/app_utils

1 file changed

+2
-2
lines changed

agent_starter_pack/deployment_targets/agent_engine/python/{{cookiecutter.agent_directory}}/app_utils/deploy.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,10 +152,10 @@ def print_deployment_success(
152152
)
153153
print(f"Service Account: {default_sa}")
154154
{%- if cookiecutter.is_adk and not cookiecutter.is_adk_live and not cookiecutter.is_a2a %}
155-
playground_url = f"https://console.cloud.google.com/vertex-ai/agents/locations/{location}/agent-engines/{agent_engine_id}/playground?project={project}"
155+
playground_url = f"https://console.cloud.google.com/vertex-ai/agents/agent-engines/locations/{location}/agent-engines/{agent_engine_id}/playground?project={project}"
156156
print(f"\n📊 Open Console Playground: {playground_url}\n")
157157
{%- else %}
158-
console_url = f"https://console.cloud.google.com/vertex-ai/agents/locations/{location}/agent-engines/{agent_engine_id}?project={project}"
158+
console_url = f"https://console.cloud.google.com/vertex-ai/agents/agent-engines/locations/{location}/agent-engines/{agent_engine_id}?project={project}"
159159
print(f"\n📊 View in Console: {console_url}\n")
160160
{%- endif %}
161161

0 commit comments

Comments
 (0)