,

Gemini Enterprise and Agentspace, Enterprise Agents for Every Employee (Google Cloud Gen AI Series, Part 22)

Google Agentspace is now Gemini Enterprise, the per seat front door that puts search and a gallery of agents in front of every employee. What it includes, how a request flows, what a seat costs, and when to buy it instead of building your own.

Google Cloud Gen AI Series · Part 22 of 30

A director of operations asked me last quarter why her staff still could not find the shipping policy in under three clicks, months after my team had shipped two grounded search apps for her group. The apps worked; the trouble was that nobody outside the pilot knew they existed, and the two people who did had bookmarked a raw Cloud Run URL.

Who this is for: platform leads and IT buyers deciding whether to roll out a per seat agent product or keep building custom apps. It assumes you have seen Agent Builder and the ADK in Part 13 and how a multi-agent graph runs on Agent Engine in Part 21. No prior Agentspace experience is needed; every product name is defined on first use.
Key takeaways: Gemini Enterprise, the product that launched as Google Agentspace, is the front door that puts a branded search box and a gallery of agents in front of staff who will never open a cloud console. Google ships prebuilt agents, Deep Research, NotebookLM and Idea Generation, on day one; you register custom agents built on the Agent Platform behind the same door; and access, connectors and governance sit in one place. You pay per seat, so the decision is how many people will use it, not how many tokens they burn.

That gap is what this part is about. Everything in this series up to now has been the builder side of Google Cloud: how you construct an agent, ground it, tune it, and run it. None of it puts the agent in front of the four thousand people who will never open a console. Gemini Enterprise is the distribution layer. It gives every employee one branded search box and a gallery of agents they open like any other internal app, and it draws a governance boundary around the lot.

What Agentspace became in 2026

Google launched Agentspace in late 2024 as an enterprise search and agent hub: one place where an employee types a question and gets an answer drawn from company data, with agents attached. At Cloud Next in April 2026 Google folded that product into a single brand called Gemini Enterprise, and at the same event renamed the developer platform, the thing this series has called Vertex AI, to the Gemini Enterprise Agent Platform. Two products, one family name.

The split is worth stating plainly because the docs are mid rename and search results still mix both terms. The Gemini Enterprise app is the employee facing product: search, the agent gallery, single sign on, and admin governance. The Agent Platform, formerly Vertex AI, is the developer product where you build with the Agent Development Kit and deploy to Agent Engine. If you read an older page that says Agentspace, it means the app that is now called Gemini Enterprise. My advice for the next year of reading Google docs: treat Agentspace and Gemini Enterprise as the same product, and treat any Vertex AI page as the Agent Platform. The console path moved too, so bookmark the new location rather than trusting an old link.

Where Gemini Enterprise sits in the stack

Picture three layers. At the top is the app your employees see. In the middle are the agents, both the ones Google ships and the ones you register. At the bottom is the Agent Platform where those custom agents were actually built. Employees only ever touch the top. Developers live at the bottom. The middle is the meeting point, and getting an agent from bottom to top is the whole trick of this product.

Two audiences, one stackEmployees open the top layer, developers build the bottom oneGemini Enterprise appBranded search box, agent gallery, SSO, central governanceAgentsPrebuilt: Deep Research, NotebookLM, Idea Generation, plus your ownAgent PlatformADK, Agent Engine, Model Garden, Vertex AI SearchEmployeesDevelopers
Figure 1. The app is the buyer facing surface; the Agent Platform is the builder surface. The agents layer is where a custom build gets published for staff to use.

The prebuilt agents you get on day one

The reason to buy on day one rather than build for a month is the set of agents Google ships in the box. Three matter. Deep Research is a multi step research agent: it plans a set of sub questions, searches your connected sources and, where you allow it, the public web, then returns a written report with citations back to what it read. NotebookLM is the grounded notebook: you give it a fixed set of documents and it answers strictly from those, which makes it the safer choice when you never want it to wander outside a defined corpus. Idea Generation is structured brainstorming, useful for planning and naming work but dependent on a prompting habit most staff do not have yet.

The distinction between Deep Research and NotebookLM is the one people get wrong. Deep Research is allowed to range; NotebookLM is deliberately fenced. If a compliance team asks whether an answer could ever cite something outside an approved document set, NotebookLM is your answer and Deep Research is not. Pick per use case, not per preference.

In practice: turn on NotebookLM and Deep Research first, and leave Idea Generation off until someone asks for it. The first two map to questions people already have, find the answer in our documents, and do the reading for me. Idea Generation is genuinely useful but it sits unused without a prompt habit, and an unused agent in the gallery reads as clutter. Fewer, well understood agents beat a full gallery nobody trusts.

How a question moves through the system

When an employee types a question, the app searches first. It runs blended search across the sources you connected, Google Workspace, SharePoint, Jira, ServiceNow and the rest through managed connectors, and it respects each source document ACL as it goes. If the question only needs an answer, it returns grounded text with citations and stops. If the question implies an action, book the leave, file the ticket, draft the summary, it hands off to an agent from the gallery, which calls the tool or connector and comes back with a result. Search is the default path; an agent is the branch you take only when a plain answer is not enough.

flowchart LR
  U[Employee question] --> S[Gemini Enterprise search]
  S --> R{Needs an action?}
  R -->|No| A[Grounded answer with citations]
  R -->|Yes| G[Agent from the gallery]
  G --> T[Tool or connector call]
  T --> A
Figure 2. Most requests end at a grounded answer. Only requests that need an action route to an agent, which calls a tool or connector and returns through the same answer surface.

Register a custom agent from the gallery

Prebuilt agents cover the common cases. The reason you keep a developer team is the uncommon ones. You build a custom agent on the Agent Platform with the ADK, the same pattern from Part 13 and Part 21, deploy it to Agent Engine, then register it into Gemini Enterprise so it appears in the gallery for the right group of people. Once registered it behaves like any other agent in the app, with the same identity and governance around it.

The employee side is mostly no code, but the app is API addressable underneath, which matters when you want to test retrieval quality or wire the search into another internal tool. Here is a grounded query against an enterprise search engine, which still rides the Discovery Engine API surface under the covers.

# Query a Gemini Enterprise (Agentspace) search app for a grounded, cited answer
# The engine still uses the Discovery Engine API surface under the covers
PROJECT=my-proj
ENGINE=my-enterprise-search-engine

curl -X POST 
  -H "Authorization: Bearer $(gcloud auth print-access-token)" 
  -H "Content-Type: application/json" 
  "https://discoveryengine.googleapis.com/v1/projects/$PROJECT/locations/global/collections/default_collection/engines/$ENGINE/servingConfigs/default_search:answer" 
  -d '{"query":{"text":"What is our parental leave policy?"},"answerGenerationSpec":{"includeCitations":true}}'

Expected output: a JSON answer object with an answer text field and a citations array pointing at the source documents the retriever used. Failure mode: a 403 usually means the caller lacks the Discovery Engine viewer role, and a 404 on the engine path almost always means the servingConfig id is wrong, not that the engine is missing. Copy the engine resource name from the console before you guess it.

Gotcha: the gallery respects document ACLs, but only as well as the source connector reports them. I have watched a SharePoint connector index a library whose permissions had drifted, so a grounded answer quoted a document the asker was not supposed to see. The search worked exactly as designed. Audit connector permissions before you widen the rollout, and test with a low privilege account, not your admin login.

What a seat actually costs

This is the part that changes how you budget. The Agent Platform bills per token and per runtime hour, the model from Part 21. Gemini Enterprise bills per seat per month, like any other productivity licence. That flips the buying question from how heavily will people use it to how many people get a licence at all. Below are the published Agentspace era tiers; treat the numbers as the shape of the pricing, because the rename may have reshuffled the tiers.

TierPer seat / monthWhat a seat includes
NotebookLM Enterprise~$9NotebookLM grounded on documents you provide, with enterprise controls
Gemini Enterprise (standard)~$25Blended enterprise search, summaries, citations, people and multimodal search
Enterprise Plus~$45Follow up questions, actions in first and third party apps, upload and QA, custom and research agents
Table 1. Published Agentspace era per seat pricing. Google may have restructured tiers under the Gemini Enterprise name; confirm current rates before you budget.
Price is per seat, not per tokenPublished Agentspace era monthly price per user by tier$0$15$30$45$9NotebookLM$25Standard$45Plus
Figure 3. The three seat prices from Table 1. Because you pay per seat, the lever is who gets which tier, and the same numbers drive the worked example below.

Worked example

Take 500 employees on the standard tier at about $25 a seat. That is $12,500 a month, roughly $150,000 a year, before a single custom agent. Now move the 80 people who actually run actions and research agents to Plus at about $45 and leave the other 420 on standard: 80 times $45 plus 420 times $25 is $14,100 a month, about $1,600 more than putting everyone on standard and far less than the $22,500 you would pay to blanket all 500 on Plus.

So the design call is concrete: buy Plus for the power users, standard for everyone else, and do not put the whole company on the top tier for a feature most will never open.

Agentspace or build it yourself?

You can build almost everything Gemini Enterprise does on the Agent Platform yourself. The question is whether you should. The packaged product wins when you want reach across non technical staff, fast time to value, managed connectors, and identity and governance you did not have to wire. A custom build wins when the surface is narrow, embedded in your own product, needs a bespoke interface, or runs at a scale where per token beats per seat. Most companies want both: the app for the broad internal audience, a handful of custom agents for the workflows that are actually yours.

FactorGemini Enterprise (buy)Build on Agent Platform
AudienceEvery employee, non technicalA specific app or workflow
Time to first valueDays, prebuilt agents onWeeks of engineering
Search across sourcesIncluded, connectors managedYou build ingestion and index
Identity and accessSSO and ACL aware in the boxYou wire IAM and doc ACLs
Cost shapePer seat, predictablePer token plus runtime
Custom UX and embeddingLimited to the app surfaceFull control
Table 2. Where the packaged product wins and where a custom build wins. Most estates end up running both.

For the contrast on another cloud, Amazon packages a similar employee assistant as Amazon Q Business, which I covered in the AWS series. The shape is the same across vendors: a per seat search and agent product on top of a per token developer platform.

Disclaimer: registering an agent and enabling a connector changes what real employees can retrieve the moment it goes live. Roll out to a single pilot organizational unit first, confirm the ACL behaviour with a normal user account, and only then widen the audience. Connector scopes and admin controls change between releases; check the current settings before a company wide switch.

Who can see which agent?

The governance that justifies the per seat price lives in the admin console. You decide which connectors are on, which agents appear for which organizational unit, and what data leaves the tenant. Agent visibility is scoped by organizational unit, so the finance agent shows only for finance and the HR agent only for HR, without building separate apps for each. Every query and answer is logged, which matters the day someone asks why an agent surfaced a particular document.

Two controls I check first on any rollout. The data residency setting, because a regulated customer will ask where the index and the prompts live, and the answer needs to be a named region rather than a shrug. And the connector scope, because the default is often wider than the pilot needs. Set both narrow, widen later. This is also where the audit trail and factsheet style records come from when compliance wants proof; it is far easier to turn logging on from day one than to reconstruct history after an incident. Governance is the reason a buyer picks the packaged product over a weekend of glue code, so treat the admin console as the real product, not an afterthought.

Is a Gemini Enterprise seat worth it?

For the broad internal audience, yes, and I do not say that about many packaged products. The distribution problem is real: a good agent nobody can find returns nothing. Gemini Enterprise solves the one thing custom builds keep failing at, which is getting the agent in front of everyone with search, single sign on and governance already handled. Start with NotebookLM and Deep Research on a pilot organizational unit, price the standard tier for the many and Plus for the few, and only build custom agents for the workflows that are genuinely yours. Where I would not buy it: a small technical team that wants one embedded agent in its own product, where per token on the Agent Platform is cheaper and the app surface only gets in the way.

Next in the series I move from the packaged app to how you measure whether any of these agents are actually good, with the Gen AI evaluation service. If you take one action from this part, run the pilot on one organizational unit before you licence the company.

Google Cloud Gen AI Series · Part 22 of 30
« Previous: Part 21  |  Guide  |  Next: Part 23 »

References

Gemini Enterprise Agent Platform, formerly Vertex AI (Google Cloud)
Google Agentspace enables the agent driven enterprise (Google Cloud Blog)
Gemini Enterprise app product page (Google Cloud)
NotebookLM Enterprise, Gemini Enterprise, or both (Google Cloud docs)

About The Author


Discover more from Journal of Intelligent Infrastructure – By Dr Pranay Jha

Subscribe to get the latest posts sent to your email.

Leave a Reply

Your email address will not be published. Required fields are marked *

Architect’s Toolkit

About the Author

Dr. Pranay Jha is a Cloud and AI Consultant with 18+ years of experience in hybrid cloud, virtualization, and enterprise infrastructure transformation. He specializes in VMware technologies, multi-cloud strategy, and Generative AI solutions. He holds a PhD in Computer Applications with research focused on Cloud and AI, has published multiple research papers, and has been a VMware vExpert since 2016 and a VMUG Community Leader.

Discover more from Journal of Intelligent Infrastructure - By Dr Pranay Jha

Subscribe now to keep reading and get access to the full archive.

Continue reading