Everything in Agent Platform starts with an agent, so that’s where we’ll start too. In this part we’ll build one with ADK — Google’s open-source framework for defining agent logic, wiring up tools, and orchestrating it all in Python — and then deploy it to the Agent Platform …
Continue reading
Agents
Now that the trading agent is deployed, let’s give it a memory. On Agent Platform you get session persistence for free — ask it “what trades did you execute?” a day later from the same session and the whole conversation is still there, even though the agent was suspended the …
Continue reading
Memories
So far we’ve let other tools decide how the agent gets hosted — adk run locally, or the little deploy script that packages everything up for Agent Platform runtime. Both are handy, but sometimes you just want a plain container: one image you can run on your laptop today, and on …
Continue reading
Containerizing