GadgetBond

  • Latest
  • How-to
  • Tech
    • AI
    • Amazon
    • Apple
    • CES
    • Computing
    • Creators
    • Google
    • Meta
    • Microsoft
    • Mobile
    • Samsung
    • Security
    • Xbox
  • Transportation
    • Audi
    • BMW
    • Cadillac
    • E-Bike
    • Ferrari
    • Ford
    • Honda Prelude
    • Lamborghini
    • McLaren W1
    • Mercedes
    • Porsche
    • Rivian
    • Tesla
  • Culture
    • Apple TV
    • Disney
    • Gaming
    • Hulu
    • Marvel
    • HBO Max
    • Netflix
    • Paramount
    • SHOWTIME
    • Star Wars
    • Streaming
Add GadgetBond as a preferred source to see more of our stories on Google.
Font ResizerAa
GadgetBondGadgetBond
  • Latest
  • Tech
  • AI
  • Deals
  • How-to
  • Apps
  • Mobile
  • Gaming
  • Streaming
  • Transportation
Search
  • Latest
  • Deals
  • How-to
  • Tech
    • Amazon
    • Apple
    • CES
    • Computing
    • Creators
    • Google
    • Meta
    • Microsoft
    • Mobile
    • Samsung
    • Security
    • Xbox
  • AI
    • Anthropic
    • ChatGPT
    • ChatGPT Atlas
    • Gemini AI (formerly Bard)
    • Google DeepMind
    • Grok AI
    • Meta AI
    • Microsoft Copilot
    • OpenAI
    • Perplexity
    • xAI
  • Transportation
    • Audi
    • BMW
    • Cadillac
    • E-Bike
    • Ferrari
    • Ford
    • Honda Prelude
    • Lamborghini
    • McLaren W1
    • Mercedes
    • Porsche
    • Rivian
    • Tesla
  • Culture
    • Apple TV
    • Disney
    • Gaming
    • Hulu
    • Marvel
    • HBO Max
    • Netflix
    • Paramount
    • SHOWTIME
    • Star Wars
    • Streaming
Follow US
AIGoogleGoogle I/OTech

Google Rolls Out Managed Agents Inside the Gemini API

Google is turning Gemini from a model into a full agent platform, letting developers spin up managed agents that run code, use tools, and keep state with a single API call.

By
Shubham Sawarkar
Shubham Sawarkar's avatar
ByShubham Sawarkar
Editor-in-Chief
I’m a tech enthusiast who loves exploring gadgets, trends, and innovations. With certifications in CISCO Routing & Switching and Windows Server Administration, I bring a sharp...
Follow:
- Editor-in-Chief
May 20, 2026, 9:00 AM EDT
Share
We may get a commission from retail offers. Learn more
Minimal dark-themed graphic displaying the Gemini multicolor star logo and the Antigravity gradient wave logo side by side inside rounded square icons on a black background.
Image: Google
SHARE

Google is quietly rewriting what it means to “call an API.” The Gemini API doesn’t just return model outputs anymore – it now lets you spin up fully managed AI agents that think, plan, write code, browse the web, juggle files, and keep state, all from a single call. In other words, Google is taking the messy infrastructure work behind serious “agentic” apps and stuffing it behind one endpoint.

If you’ve spent the last year watching AI “agents” go from buzzword to GitHub rabbit hole, this move will feel like a turning point. Instead of wiring together sandboxes, tool runners, vector stores, and retry logic yourself, Google is saying: point your request at our managed agents, describe the behavior you want, and we’ll handle the guts.

And yes, it even has a sci-fi name: Antigravity.


At the heart of this launch is the Antigravity agent, Google’s new general-purpose managed agent built on Gemini 3.5 Flash. When you call it through the Interactions API or Google AI Studio, Google provisions an ephemeral Linux environment on its side – a real sandboxed machine – and drops an agent inside that can reason, call tools, execute code, manage files, and browse the web.

That code execution piece is a big deal. Antigravity can run Bash, Python, and Node.js, install packages, run tests, build small apps, and read or write files inside the sandbox. Those files persist across interactions, so you can iterate: first ask it to scaffold a project, then come back and have it refactor a specific module, then run tests, all in the same backed-up environment. It’s essentially giving every request its own little cloud devbox, without you touching a VM or container.

On top of that, Antigravity has built-in web access: it can hit Google Search and fetch arbitrary URLs to pull in fresh data. Combine that with long-context support – Google says it automatically compacts context around roughly 135k tokens to keep sessions going – and you get an agent that can run genuine multi-step workflows instead of just answering a single prompt.

Google has actually been dogfooding this idea for a while. Late last year, it quietly shipped Deep Research, a managed agent designed for complex, multi-step research tasks like market analysis or due diligence, and that product ran on the same internal harness that is now being exposed through the Gemini API. With managed agents, Google is taking that internal scaffolding – the orchestration, sandboxes, tool loop, web access, and persistence – and handing it to developers as a configurable platform.


If you’ve tried building your own agent system from scratch, you already know where all the pain lives. You don’t just “call the model” – you need to create a planning loop, choose or build a framework, manage execution in a secure sandbox, plug in tools, store state somewhere, and then harden it all for production. It’s fun for a weekend project, but it gets brittle fast.

Google’s pitch with managed agents is pretty simple: you shouldn’t have to reinvent that harness every time you want an AI-powered workflow. The managed agents use a pay-as-you-go model, billing based on Gemini tokens plus whatever tools get used, and under the hood, an interaction can spin multiple reasoning loops as the agent plans, acts, observes, and repeats until it’s satisfied with the result.

Crucially, this is still “just” an API. You aren’t deploying containers or managing an agent runtime cluster; you’re making a single call to the Antigravity agent or to a custom managed agent, and the platform handles provisioning the Linux environment, running code, preserving state, and cleaning everything up when you’re done. That’s very different from stitching together a model API, a separate sandbox service, a file store, and a vector database yourself.

This is also where Google is leaning into its scale advantage. The same harness that powers Antigravity and Deep Research is used internally across Google’s own agents, and now third-party developers are sitting on that same infrastructure instead of rolling their own. To put it bluntly: Google wants your “agent stack” to look a lot more like “just call Gemini, we’ll do the rest.”


Where this gets interesting for developers is the customization story. Google isn’t just giving you a generic agent; it’s letting you define your own agents using a surprisingly simple abstraction: markdown files.

Instead of wiring up orchestration logic in a framework and scattering behavior across configs and code, you can describe an agent, its behavior, and its skills in files like AGENTS.md and SKILL.md, then register that definition as a managed agent. Those files become versionable artifacts – you can check them into Git, ship them through your regular release process, and treat “agent behavior” as something you manage alongside your application code.

On top of that, Google is shipping a Gemini API agent skill specifically to help coding agents scaffold and manage these custom agents. That’s a very “eat your own dog food” move: you can use an agent to help you build other agents, from adding new skills to restructuring your AGENTS.md configuration.

From a developer’s perspective, this has a few immediate benefits:

  • You can start from the Antigravity agent as a sane default – reasoning, planning, code, files, web – then layer your own instructions, tools, and data on top.
  • You get a consistent, production-grade harness that will behave the same way in your prototypes and in your shipped products.
  • You get a configuration surface that’s legible to more than just the person who wrote the orchestrator – product teams can read and review the markdown specs.

It’s a subtle but important shift: instead of every company inventing its own private agent framework, Google is trying to standardize on “managed agents + markdown definitions + the Gemini API.”


There’s also a bigger enterprise story here, and it’s clearly one of the reasons this product exists. On the consumer and indie developer side, managed agents live in the Gemini API and Google AI Studio, but for larger organizations, they’re also being wired directly into the Gemini Enterprise Agent Platform in private preview.

That platform, announced around Google Cloud Next, is essentially “mission control” for AI agents in the workplace – a place to build, scale, govern, and optimize fleets of agents across business units. It includes things like Agent Identity, which gives each agent a cryptographic ID so its actions are traceable against defined authorization policies, and an Agent Registry that acts as a central library of approved agents and skills.

That governance layer matters. When you scale from one or two experimental bots to hundreds or thousands of agents touching sensitive systems, you suddenly care about audit trails, permissions, and who can deploy what. The Managed Agents API is designed to sit inside that environment, giving enterprises the same sandboxed, config-driven runtime as indie developers, but wrapped in controls that IT and security teams can actually live with.

Taken together, the messaging is pretty clear: Gemini isn’t just a family of models, it’s a full agent stack. You can talk to a model directly, or you can outsource whole workflows to managed agents that live inside a governed sandbox, whether you’re a solo dev or a Fortune 500 IT org.


One interesting thing about this launch is that it doesn’t really come out of nowhere. Over the past year, the industry has been converging on “agentic” patterns – planning loops, tool use, memory, self-correction – and a wave of open source frameworks like LangGraph, CrewAI, LlamaIndex, and others have helped popularize the idea of building rich agent workflows on top of model APIs.

Google has been participating in that ecosystem, publishing guidance on how to build agents with Gemini using those frameworks, from function calling to more advanced self-correction and dynamic planning strategies. Managed agents are not an attempt to replace all of that; they’re Google’s answer to the question: what if the harness itself lived right next to the model, with first-class support for code execution, web browsing, and long-running sessions?

You can imagine a pretty natural split. Some teams will keep using open frameworks to build complex, multi-agent systems wired into custom infra, especially when they have very specific requirements. Others will be happy to let Google own the sandbox, the tool loop, and the context management, and focus on the product layer: what should the agent do, how should it talk, which internal data should it see.

The pricing model – pay-as-you-go based on model tokens and tool usage – also hints at where this is going. If agentic workloads become the default way people interact with AI systems, the unit of work stops being “one prompt, one response” and becomes “one workflow, many steps, one agent call.” Google wants that agent call going through its Gemini API and its managed agent runtime.


For developers, the practical question is simple: what can you actually build with this that you couldn’t build before?

The honest answer is that most of what managed agents can do was technically possible already – you could wire up a model, a sandbox, a set of tools, a search API, a database, and an orchestration framework and arrive at something similar. The difference now is the friction. A lot of the hardest, least glamorous parts of building production-grade agents have been moved behind a managed surface, wrapped in markdown configs and a single endpoint.

That opens the door for smaller teams – or even solo developers – to ship experiences that look suspiciously like the advanced agents Google is building for itself. You can prototype in Google AI Studio using ready-made templates, tweak your AGENTS.md until the behavior feels right, then drop that same configuration into your app and let the Gemini API handle the orchestration.

It also raises the bar for what “calling an AI API” means. If we look back a year or two from now, the idea of manually managing sandboxes and writing custom tool loops for every new agent may feel as dated as hand-rolling your own web server instead of dropping your code on a serverless platform.

Google isn’t alone in chasing that future, but with managed agents on the Gemini API, it’s staking out a very specific position: the future of AI apps is not just better models, it’s better agents – and those agents will live inside managed runtimes that abstract away most of the infrastructure we wrestle with today.


Discover more from GadgetBond

Subscribe to get the latest posts sent to your email.

Topic:Gemini AI (formerly Bard)
Leave a Comment

Leave a ReplyCancel reply

Most Popular

Xbox Game Pass explained: plans, perks, and play

What is cloud gaming?

The real purpose of Microsoft PC Manager

Xbox Game Pass Ultimate: pricing, perks, and how it all fits together

Apple’s next Pro iPhone may not solve the scratch problem

Apple Music iOS 27 update: AutoMix, artist pages, and Siri AI

The new Beats headphones, Antonee Robinson just teased on his way to the World Cup

Xbox Game Pass Essential: who it’s for, what it includes, what it skips

What to watch on Paramount+ right now

What is Xbox Cloud Gaming and how does it work?

Also Read
Illustrated graphic representing online journalism and digital publishing. A blue vintage-style typewriter prints a webpage-like document featuring text lines and social media icons, while a browser search bar extends from the side. Set against a dark textured background, the artwork symbolizes the intersection of traditional journalism, web publishing, search, and social media in the digital news era.

Before the web, there was print

Promotional image for the Hypelist app featuring a collection of Polaroid-style photographs scattered across a black background. The photos capture a variety of everyday moments, including a seaside meal, a coffee table scene, a ferry cabin, cyclists riding at night, landscapes, and lifestyle snapshots. The collage-style layout highlights Hypelist’s focus on creating, organizing, and sharing visual collections, recommendations, and personal lists based on experiences, places, and interests.

Hypelist lets you build lists around the things you love

Promotional image for the Swipewipe photo cleaner app showing three versions of the same portrait photo arranged on a soft beige background. The center image is highlighted with a green checkmark to indicate a photo being kept, while the smaller images on either side feature trash can icons, representing photos selected for deletion. The visual illustrates Swipewipe’s swipe-based photo organization and cleanup process for managing duplicate or unwanted images.

Swipewipe makes clearing your camera roll feel oddly easy

Promotional artwork for PC Game Pass featuring a collage of game characters and worlds. The image includes a red-eyed fantasy character, a tactical soldier, an adventurer wearing a fedora, and a mythological bearded figure with glowing eyes. The Xbox logo and "PC Game Pass" branding appear across the center, highlighting a diverse library of action, adventure, strategy, and role-playing games available through the subscription service.

PC Game Pass in 2026: library, limits, and the new price cut

Promotional Xbox gaming image with the slogan “Play the Way You Want” displayed in large green text at the center. Surrounding the message are multiple gaming devices, including an Xbox console and controller, a gaming handheld, a laptop, a smartphone, and a TV, all showing Xbox games and the Xbox app interface. The artwork highlights Xbox Cloud Gaming and Game Pass, emphasizing the ability to play across console, PC, handheld, mobile, and streaming devices from a single gaming ecosystem.

Xbox Game Pass Premium: the middle tier that might be just right

Promotional image of the PlayStation Portal handheld gaming device featuring the PlayStation Plus cloud streaming interface on its display. The screen shows the PlayStation Plus logo surrounded by a glowing purple ring, while the device's white DualSense-style controller grips frame the display on both sides. Set against a dark background with PlayStation-inspired colors, the image highlights cloud gaming and remote play capabilities available through PlayStation Plus.

New to PlayStation Plus? Here’s how the service really works

Promotional image for Amazon Luna cloud gaming featuring the Luna logo on a purple gradient background. Multiple devices, including a smart TV, desktop monitor, laptop, tablet, and smartphone, display the same racing game scene with Sonic the Hedgehog and other characters. An Amazon Luna wireless controller is positioned in front of the screens, illustrating seamless game streaming across different devices through Amazon’s cloud gaming platform.

How Amazon Luna works and who it is for

Promotional image for NVIDIA GeForce NOW cloud gaming showcasing games streamed across multiple devices. Large displays feature Pragmata and Counter-Strike 2, while laptops, a handheld gaming device, smartphone, VR headset, racing wheel, and flight simulator controls are arranged on illuminated black platforms. The dark futuristic background with NVIDIA-green wave patterns emphasizes GeForce NOW’s ability to play high-end PC games across screens and gaming hardware through cloud streaming.

What GeForce Now gets right about cloud gaming

Company Info
  • Homepage
  • Support my work
  • Latest stories
  • Company updates
  • GDB Recommends
  • Daily newsletters
  • About us
  • Contact us
  • Write for us
  • Editorial guidelines
Legal
  • Privacy Policy
  • Cookies Policy
  • Terms & Conditions
  • DMCA
  • Disclaimer
  • Accessibility Policy
  • Security Policy
  • Do Not Sell or Share My Personal Information
Socials
Follow US

Disclosure: We love the products we feature and hope you’ll love them too. If you purchase through a link on our site, we may receive compensation at no additional cost to you. Read our ethics statement. Please note that pricing and availability are subject to change.

Copyright © 2026 GadgetBond. All Rights Reserved. Use of this site constitutes acceptance of our Terms of Use and Privacy Policy | Do Not Sell/Share My Personal Information.