Can't deploy to Google's Agent Engine using "Runner"? #706
-
Apparently, Agent Engine only supports deploying simple agents right? We can't attach: ArtifactService, MemoryService...and all other services because we need to pass them to a Since complex workflows also need to be using the Runner to be able to use ArtifactService, MemoryService...etc we can't use them with "Agent Engine" right now? What I mean is that this code can't be deployed to "Agent Engine" and at the same time it's the only way to pass the services. runner = Runner(
agent=my_agent,
app_name="my_prod_app",
session_service=cloud_session_service,
memory_service=memory_service,
artifact_service=artifact_service
) Maybe I don't understand something, but i read all the doc |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Agent Engine is meant to be pre-wired services. Right now, it only has hosted session service, the other two will come later. If you're looking for a customized solution with 3 services from different providers, then cloud run is better fit. |
Beta Was this translation helpful? Give feedback.
Agent Engine is meant to be pre-wired services. Right now, it only has hosted session service, the other two will come later.
If you're looking for a customized solution with 3 services from different providers, then cloud run is better fit.