fix(cli): correct console URL path after adk deploy agent_engine#5338
fix(cli): correct console URL path after adk deploy agent_engine#5338anmolg1997 wants to merge 1 commit intogoogle:mainfrom
Conversation
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 google#5336
|
Response from ADK Triaging Agent Hello @anmolg1997, thank you for creating this PR! To help reviewers to review your PR more efficiently, could you please include a Thanks! |
|
Hi @adk-bot — here's the testing plan and details: Testing Plan
Before vs AfterBefore (current main): → This URL leads to a 404 / non-existent page. After (this PR): → This URL correctly opens the Vertex AI Agent Engines page. The Google Cloud Console was reorganized to move Agent Engine management under the Vertex AI section. The old All CI checks passing (CLA ✅, header-check ✅, agent-triage ✅). |
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
|
Thank you @anmolg1997 for your contribution! 🎉 Your changes have been successfully imported and merged via Copybara in commit 64ed1a6. Closing this PR as the changes are now in the main branch. |
Summary
After deploying an agent with
adk deploy agent_engine, the generated Google Cloud Console URL uses the outdated pathagent-platform/runtimes, which no longer resolves to the correct page.Changes
src/google/adk/cli/cli_deploy.pyUpdated the URL path in
_print_agent_engine_urlfrom:to:
Fixes #5336