SaveMyCert
Log in
5 of 5 free questions left today·for unlimited practice
Google Cloud's gen AI offerings

How Google Cloud Empowers Developers: Agent Platform and RAG

11 min readGenAI Leader · Google Cloud's gen AI offeringsUpdated

Google Cloud empowers developers to build with AI through Agent Platform — a unified environment for discovering models, grounding them in company data, and building custom gen AI agents — together with a set of retrieval-augmented generation (RAG) offerings that connect models to enterprise information. The three Agent Platform capabilities the exam names are Model Garden, a curated library for discovering and comparing foundation models; Agent Search, an out-of-the-box, Google-quality search and answer engine over an organization's own data; and Agent Platform AutoML, which lets teams train custom models through a guided interface without deep machine learning expertise. For retrieval, Google Cloud offers two routes: prebuilt RAG with Agent Search, a fully managed pipeline, and RAG APIs, component services developers assemble into custom pipelines. In this lesson you will learn what each offering does, when to use it, and the business value each one delivers.

What you’ll learn
  • Describe the functionality, use cases, and business value of Agent Platform as a unified environment for building with AI
  • Explain what Model Garden offers and why model choice matters to a business
  • Recognize how Agent Search delivers out-of-the-box enterprise search and grounded answers
  • Identify when Agent Platform AutoML is the right way to create a custom model
  • Compare prebuilt RAG with Agent Search against RAG APIs and match each to a scenario
  • Explain how Agent Platform is used to build, ground, and manage custom gen AI agents

What Agent Platform offers developers

Agent Platform is Google Cloud's unified environment for building with generative AI: one place where developers discover and evaluate models, adapt them with company data, build gen AI agents, and deploy and manage everything with enterprise-grade security. Instead of stitching together separate products for model access, search, training, and deployment, a development team works inside a single platform where those capabilities are designed to fit together.

The exam highlights three capabilities inside it. Model Garden is where developers find and compare foundation models. Agent Search provides ready-made, Google-quality search and question answering over an organization's own content. Agent Platform AutoML lets teams train custom models through a guided workflow rather than hand-built training code. Around these sit the tools to build custom agents — defining goals, instructions, and the data an agent can use — and to run them in production.

The business value is threefold. First, speed: teams start from pretrained models and prebuilt components instead of building from zero, so pilots become products in weeks rather than quarters. Second, accessibility: capabilities like AutoML and low-code agent building mean useful AI is no longer gated on scarce machine learning specialists. Third, governance: because building, grounding, and deployment happen on one platform, security controls, access policies, and monitoring apply consistently — which is what makes gen AI acceptable to enterprise risk and compliance teams.

Model Garden: one place to discover and compare models

Model Garden is a curated library inside Agent Platform where developers discover, evaluate, and start using foundation models. It brings together Google's own models — the Gemini family for language and multimodal tasks, Imagen for images, Veo for video, and the lightweight open Gemma models — alongside popular open models and models from Google's partners, each documented so a team can understand what a model does, what it costs, and what it is best at before committing.

The typical use case is model selection. A team building a customer-facing assistant can compare a frontier multimodal model against a smaller, faster, cheaper one, test both against real examples of their task, and choose based on quality, latency, and cost rather than guesswork. Because new and updated models appear in the same library, revisiting that choice later is straightforward.

The business value is choice without fragmentation. Model Garden prevents the two classic failure modes of enterprise AI adoption: betting everything on a single model that later proves wrong for the workload, and scattering different teams across disconnected tools with no shared governance. One library, many models, one set of enterprise controls — that framing is exactly what exam scenarios about Model Garden reward.

Agent Search: out-of-the-box search and grounded answers

Agent Search gives an organization Google-quality search over its own data, out of the box. Developers point it at their content — internal documents, websites, knowledge bases, structured records — and it delivers a search and question-answering experience that understands natural language, ranks results by relevance, and can generate conversational answers grounded in the indexed content, with references back to the sources it used.

Use cases cluster in two areas. Inward-facing: an employee help center where staff ask questions in plain language and get answers drawn from HR policies, IT runbooks, and internal wikis instead of hunting through folders. Outward-facing: product search and self-service support on a company website, where customers get direct, sourced answers rather than a list of links.

The business value is time to value. Building a modern retrieval system in-house means solving document parsing, indexing, ranking, and answer generation — deep specialist work. Agent Search packages that entire stack as a managed offering, so the differentiating work left for the team is curating the content, not engineering the search. For a leader, the signal in an exam scenario is a company that wants trustworthy, sourced answers over its own information quickly and without a search engineering team — that points to Agent Search.

Agent Platform AutoML: custom models without deep ML expertise

Agent Platform AutoML lets teams train custom machine learning models on their own data through a guided interface, without writing training code or designing model architectures. The developer supplies labeled examples — images, text, or structured records — and AutoML handles the model building, training, and evaluation automatically, producing a custom model tuned to that specific business problem.

It fits when a pretrained foundation model is not specialized enough and the organization has its own labeled data. Typical examples: a manufacturer training an image model to spot defects unique to its production line, a retailer classifying products against its own category tree, or a support team routing tickets using labels that only exist inside its workflow. In each case the knowledge that matters lives in the company's data, not in any general-purpose model.

The business value is democratized model building. AutoML converts a project that once required a machine learning research team into one a capable developer or analyst can deliver, which lowers cost, shortens timelines, and lets domain experts — the people who actually understand the data — drive the work. On the exam, the cue for AutoML is a scenario that needs a custom model from the company's own labeled data, delivered without specialist ML skills.

Google Cloud's RAG offerings: prebuilt RAG and RAG APIs

Retrieval-augmented generation (RAG) is the technique of retrieving relevant information from a knowledge source at question time and supplying it to a model so the answer is grounded in current, company-specific facts rather than only the model's training data. RAG matters because foundation models have a knowledge cutoff, know nothing about your private data, and can hallucinate — retrieval addresses all three without retraining the model.

Google Cloud offers two routes to RAG, and the exam expects you to tell them apart. Prebuilt RAG with Agent Search is the managed path: Agent Search handles the entire pipeline — ingesting documents, indexing them, retrieving the right passages, and grounding generated answers with citations — as one packaged capability. RAG APIs are the component path: individual services for the stages of a retrieval pipeline, such as parsing and chunking documents, generating embeddings, retrieving candidates, and ranking them, which developers assemble into a custom pipeline when they need control over each step.

The decision rule mirrors a classic build-versus-buy trade-off. Choose prebuilt RAG with Agent Search when the goal is grounded answers over company content with minimal engineering — fastest time to value, least to maintain. Choose RAG APIs when the team has specific requirements the packaged experience cannot meet — a custom retrieval strategy, unusual document formats, or tight integration into an existing application — and is prepared to own the pipeline it builds. Either way the business outcome is the same: answers users can trust because they are grounded in the organization's own sources.

Building custom agents with Agent Platform

Agent Platform is also where developers build custom gen AI agents — systems that use a foundation model to reason about a goal, then take steps to achieve it, rather than only answering a single prompt. Building an agent on the platform means defining what the agent is for, writing the instructions that shape its behavior and tone, connecting it to the data stores that ground its answers in company information, and giving it tools so it can act — looking up an order, filing a request, or calling another system.

Use cases go beyond question answering. A customer service agent can check a delivery status and initiate a return, not just explain the returns policy. An internal operations agent can gather figures from several systems and draft the weekly report. The common thread is multi-step work: the agent plans, uses its tools, and carries a task through to completion.

The business value of building agents on Agent Platform, rather than assembling the pieces independently, is that grounding, model access, deployment, monitoring, and security controls are already integrated. Developers focus on what the agent should do; the platform supplies how it runs, scales, and stays governed. Exam scenarios that describe a company wanting an assistant that takes actions or completes workflows — not merely answers questions — are pointing at custom agents on Agent Platform.

The developer offerings at a glance

Use this table to match each offering to the problem it solves — most exam questions on this objective are exactly that matching exercise.

OfferingWhat it doesBest forBusiness value
Agent PlatformUnified environment to discover models, ground them in data, and build, deploy, and manage gen AI agentsTeams that want one governed platform for all gen AI developmentSpeed, consistent security, less specialist expertise required
Model GardenCurated library of Google, open, and partner foundation models with documentation for comparisonChoosing the right model for a workload by quality, cost, and speedInformed model choice without tool fragmentation
Agent SearchOut-of-the-box, Google-quality search and grounded question answering over company dataEnterprise search and self-service answers with source referencesSearch-engine quality without building retrieval infrastructure
Agent Platform AutoMLTrains custom models from your labeled data through a guided workflow, no training codeCompany-specific classification and recognition tasksCustom models without a dedicated ML team
Prebuilt RAG with Agent SearchFully managed retrieval pipeline: ingest, index, retrieve, and ground answers with citationsGrounded answers over company content, fastFastest time to value; nothing to maintain
RAG APIsComponent APIs for parsing, embedding, retrieval, and ranking, assembled into custom pipelinesTeams needing control over each retrieval stepFlexibility for specialized retrieval requirements

Notice the pattern: the offerings run from most packaged (Agent Search) to most flexible (RAG APIs and fully custom agents). Google Cloud's positioning is that a team should take the most packaged offering that meets the need — every step toward custom adds engineering cost that must be justified by a requirement the packaged option cannot satisfy.

A worked example: one insurer, four offerings

Consider a mid-sized insurance company modernizing its customer and employee experience — a scenario shaped like the ones the exam presents. Its choices show how the offerings combine.

First, it deploys Agent Search over its policy documents, claims guidelines, and public help pages: customers get sourced answers about coverage on the website, and call center staff stop searching shared drives mid-call. This is prebuilt RAG — live in weeks because nothing had to be engineered. Second, its developers use Model Garden to select models: a frontier multimodal model for the complex claims assistant, and a smaller, cheaper model for high-volume email classification. Third, the claims team uses Agent Platform AutoML to train a custom image model on its own labeled photos of vehicle damage, producing a first-pass severity triage no general model could match. Finally, the company builds a custom claims agent on Agent Platform: grounded in the same policy data stores, able to check a claim's status, request missing documents, and draft the settlement letter — multi-step work, not just answers.

One platform carried all four projects, under one set of security and governance controls. When an exam question describes a business need, ask which layer it lives at — choosing a model, searching company data, training a custom model, or completing multi-step tasks — and the offering names itself.

Tip. Exam questions on this objective are matching exercises: a business scenario points to Model Garden (choosing and comparing models), Agent Search (out-of-the-box search and grounded answers over company data), Agent Platform AutoML (custom models from your own labeled data without ML expertise), or a custom agent on Agent Platform (multi-step tasks and actions). Expect at least one question contrasting prebuilt RAG with Agent Search against RAG APIs — the managed pipeline versus components you assemble. The recurring principle is to pick the most packaged offering that satisfies the stated requirement.

Key takeaways
  • Agent Platform is Google Cloud's unified environment for discovering models, grounding them in company data, and building, deploying, and managing gen AI agents.
  • Model Garden is a curated library of Google, open, and partner foundation models — its value is informed model choice under one set of enterprise controls.
  • Agent Search delivers out-of-the-box, Google-quality search and grounded, source-referenced answers over an organization's own data.
  • Agent Platform AutoML trains custom models from a company's labeled data through a guided workflow, with no training code or deep ML expertise required.
  • Prebuilt RAG with Agent Search is the managed retrieval path — fastest time to value; RAG APIs are the component path for teams that need control over each pipeline step.
  • Custom agents built on Agent Platform go beyond answering questions: they use instructions, grounding, and tools to complete multi-step business tasks.
  • The selection rule: take the most packaged offering that meets the need — every step toward custom adds engineering cost that a specific requirement must justify.

Frequently asked questions

What is Agent Platform in Google Cloud?

Agent Platform is Google Cloud's unified environment for building with generative AI. Developers use it to discover and compare foundation models through Model Garden, deliver search and grounded answers over company data with Agent Search, train custom models with Agent Platform AutoML, and build, deploy, and manage custom gen AI agents — all under one set of enterprise security and governance controls.

What is the difference between prebuilt RAG with Agent Search and RAG APIs?

Prebuilt RAG with Agent Search is the fully managed path: it handles ingesting, indexing, retrieving, and grounding answers with citations as one packaged capability, giving the fastest time to value. RAG APIs are component services — for parsing documents, generating embeddings, retrieving, and ranking — that developers assemble into a custom pipeline when they need control over individual steps. Choose prebuilt for speed and simplicity; choose RAG APIs when a specific requirement demands a custom retrieval design.

When should a team use Agent Platform AutoML instead of a foundation model?

Use Agent Platform AutoML when the task depends on knowledge that lives only in the company's own labeled data — for example, recognizing defects unique to a production line or classifying items against an internal category system — and the team wants a custom model without writing training code or hiring machine learning specialists. If a general-purpose foundation model can already do the task well through prompting or grounding, that is usually the cheaper and faster choice.

What is Model Garden used for?

Model Garden is the curated model library inside Agent Platform. Developers use it to discover, compare, and start using foundation models — Google models such as Gemini, Imagen, Veo, and Gemma, plus open and partner models — with documentation that explains each model's capabilities and trade-offs. Its business value is letting teams choose the right model for each workload by quality, cost, and speed, without scattering across disconnected tools.

Why does retrieval-augmented generation matter for businesses?

Foundation models have a knowledge cutoff, know nothing about a company's private information, and can hallucinate plausible but wrong answers. Retrieval-augmented generation fixes all three without retraining: it retrieves relevant passages from the organization's own sources at question time and grounds the model's answer in them, often with citations. The result is answers users and regulators can trust, kept current simply by updating the underlying content.

Test yourself on this topic
Practice questions with full explanations.
Practice now

Sign up free to mark lessons complete, bookmark topics and track your exam readiness.