We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be779ad commit 4f1e013Copy full SHA for 4f1e013
vertexai/_genai/_agent_engines_utils.py
@@ -1231,9 +1231,9 @@ def _validate_agent_or_raise(
1231
1232
if isinstance(agent, BaseAgent):
1233
logger.info("Deploying google.adk.agents.Agent as an application.")
1234
- from vertexai.preview import reasoning_engines
+ from vertexai import agent_engines
1235
1236
- agent = reasoning_engines.AdkApp(agent=agent)
+ agent = agent_engines.AdkApp(agent=agent)
1237
except Exception:
1238
pass
1239
is_queryable = isinstance(agent, Queryable) and callable(agent.query)
0 commit comments