Hi
Can someone help, I wanna deploy ADK 2.0 on Agent Engine, currently we have ADK 1.0 and it is working as expected but I have doing some study around 2.0 and wanna deploy this as well.
Challenges During Deployment
Deployment Attempts
1. CLI Deployment (adk deploy agent_engine)
- Engine ID Created: 8332638425739952128
- Error: ModuleNotFoundError: No module named 'vertexai.agent_engines.templates.adk'
- What Happened: The ADK CLI auto-generates wrapper code that imports AdkApp, but Agent Engine runtime
doesn't have this module
2. Programmatic Deployment - Direct Workflow
- Error: agent_engine has none of the following callable methods: query, stream_query, bidi_stream_query
- What Happened: Workflows don't implement the query interface that Agent Engine expects
3. Programmatic Deployment - With AdkApp Wrapper
- Engine ID Created: 7101466877607542784
- Error: Same ModuleNotFoundError: No module named 'vertexai.agent_engines.templates.adk'
- What Happened: Agent Engine runtime can't unpickle the AdkApp wrapper because the module is missing
Hi
Can someone help, I wanna deploy ADK 2.0 on Agent Engine, currently we have ADK 1.0 and it is working as expected but I have doing some study around 2.0 and wanna deploy this as well.
Challenges During Deployment
Deployment Attempts
1. CLI Deployment (adk deploy agent_engine)
doesn't have this module
2. Programmatic Deployment - Direct Workflow
3. Programmatic Deployment - With AdkApp Wrapper