Skip to content

Commit 48a4abf

Browse files
authored
feat: add links to Agent Engine UI (#527)
1 parent 077c121 commit 48a4abf

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

docs/deploy/agent-engine.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -148,15 +148,19 @@ remote_app = agent_engines.create(
148148
)
149149
```
150150

151-
This step may take several minutes to finish. Each deployed agent has a unique identifier. You can run the following command to get the resource_name identifier for your deployed agent:
151+
This step may take several minutes to finish.
152+
153+
You can check and monitor the deployment of your ADK agent on the [Agent Engine UI](https://console.cloud.google.com/vertex-ai/agents/agent-engines) on Google Cloud.
154+
155+
Each deployed agent has a unique identifier. You can run the following command to get the resource_name identifier for your deployed agent:
152156

153157
```python
154158
remote_app.resource_name
155159
```
156160

157161
The response should look like the following string:
158162

159-
```
163+
```shell
160164
f"projects/{PROJECT_NUMBER}/locations/{LOCATION}/reasoningEngines/{RESOURCE_ID}"
161165
```
162166

@@ -218,7 +222,7 @@ Expected output for `stream_query` (remote):
218222
{'parts': [{'text': 'The weather in New York is sunny with a temperature of 25 degrees Celsius (41 degrees Fahrenheit).'}], 'role': 'model'}
219223
```
220224

221-
225+
## Using the Agent Engine UI
222226

223227
## Clean up
224228

@@ -231,3 +235,5 @@ remote_app.delete(force=True)
231235
```
232236

233237
`force=True` will also delete any child resources that were generated from the deployed agent, such as sessions.
238+
239+
You can also delete your deployed agent via the [Agent Engine UI](https://console.cloud.google.com/vertex-ai/agents/agent-engines) on Google Cloud.

0 commit comments

Comments
 (0)