vertex ai agent runtime deployment fail - reasoning engine fail to start and cannot serve traffic
Ran into this error when trying to deploy agent to vertex ai agent runtime. Base on the tutorial, we are told to deploy using this command
remote_agent = client.agent_engines.create(
agent=app,
config={
"requirements": ["google-cloud-aiplatform[agent_engines,adk]"],
"staging_bucket": "STAGING_BUCKET",
}
)
And that's was i bump into this error. To resolve it, I use the following code
remote_agent = agent_engines.create(
agent,
requirements=[
"google-cloud-aiplatform[agent_engines,langchain]==1.140.0",
"pydantic==2.12.3",
"cloudpickle==3.1.2"
]
)
And then i was ble to see that my agent being deployed.
Comments