From 2226966b2c6b27759fd528e6dec112fb57fd3aea Mon Sep 17 00:00:00 2001 From: Kaung Zin Hein <83657429+Zen-cronic@users.noreply.github.com> Date: Mon, 31 Aug 2026 13:00:12 -0400 Subject: [PATCH] docs(integrations): use Agent Platform client in Express Mode example --- docs/integrations/express-mode.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/integrations/express-mode.md b/docs/integrations/express-mode.md index 9edfa720d9..4ef751c1f8 100644 --- a/docs/integrations/express-mode.md +++ b/docs/integrations/express-mode.md @@ -56,15 +56,14 @@ Next, create your Agent Runtime instance using the Agent Platform SDK. 1. Import Agent Platform SDK. ```py - import vertexai - from vertexai import agent_engines + import agentplatform ``` 2. Initialize the Agent Platform Client with your API key and create an agent engine instance. ```py # Create Agent Runtime with Gen AI SDK - client = vertexai.Client( + client = agentplatform.Client( api_key="YOUR_API_KEY", )