GadgetBond

  • Latest
  • How-to
  • Tech
    • AI
      • Apple Intelligence
      • Gemini AI
      • Google DeepMind
      • Anthropic
      • Claude AI
      • Claude Code
      • OpenAI
      • ChatGPT
      • Codex
      • Perplexity
      • SpaceXAI
      • Grok AI
      • Microsoft Copilot
      • Meta AI
    • Amazon
    • Apple
    • CES
    • Computing
    • Creators
    • Google
    • Meta
    • Microsoft
    • Mobile
    • NVIDIA
    • Samsung
    • Security
    • Smart Home
    • Sony
    • Xbox
    • YouTube
  • Transportation
    • Audi
    • BMW
    • Cadillac
    • E-Bike
    • Ferrari
    • Ford
    • Honda Prelude
    • Lamborghini
    • McLaren
    • Mercedes
    • Porsche
    • Rivian
    • Tesla
  • Culture
    • Gaming
    • Streaming
    • Apple TV
    • Disney
    • Hulu
    • Marvel
    • HBO Max
    • Netflix
    • Paramount
    • SHOWTIME
    • Spotify
    • Star Wars
Add GadgetBond as a preferred source to see more of our stories on Google.
Font ResizerAa
GadgetBondGadgetBond
  • Latest
  • Tech
  • AI
  • Deals
  • How-to
  • Apps
  • Computing
  • Gaming
  • Mobile
  • Streaming
  • Transportation
Search
  • Latest
  • Deals
  • Buying Guide
  • How-to
  • Tech
    • Amazon
    • Apple
    • CES
    • Computing
    • Creators
    • Google
    • Meta
    • Microsoft
    • Mobile
    • NVIDIA
    • Samsung
    • Security
    • Smart Home
    • Sony
    • Xbox
    • YouTube
  • AI
    • Apple Intelligence
    • Gemini AI
    • Google DeepMind
    • Anthropic
    • Claude AI
    • Claude Code
    • OpenAI
    • ChatGPT
    • Codex
    • Perplexity
    • SpaceXAI
    • Grok AI
    • Microsoft Copilot
    • Meta AI
  • Transportation
    • Audi
    • BMW
    • Cadillac
    • E-Bike
    • Ferrari
    • Ford
    • Lamborghini
    • McLaren
    • Mercedes
    • Porsche
    • Rivian
    • Tesla
  • Culture
    • Gaming
    • Streaming
    • Apple TV
    • Disney
    • Hulu
    • Marvel
    • HBO Max
    • Netflix
    • Paramount
    • SHOWTIME
    • Spotify
    • Star Wars
Follow US
AIGoogleTech

Google upgrades Gemini API to build more resilient AI agents

Developers can now run autonomous AI workflows asynchronously in secure cloud sandboxes without worrying about open HTTP connection timeouts.

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
Jul 8, 2026, 1:31 PM EDT
Share
We may get a commission from retail offers. Learn more
Google's illustration for the Gemini API Managed Agents feature, featuring a black background with a colorful flowing gradient ribbon and the text "Managed Agents" alongside the subtitle "Background Execution, Remote MCP and more," representing AI agents that can perform tasks autonomously in the background and integrate with remote tools and services.
Image: Google
SHARE

For developers building autonomous AI agents, the process has long been plagued by an unglamorous but incredibly frustrating challenge: fragility. It is one thing to ask a chatbot to summarize a brief document, a task that wraps up in seconds. It is a completely different beast to instruct an AI agent to clone a massive corporate GitHub repository, scan thousands of lines of code for hidden bugs, run local software tests, and compile a neatly formatted markdown report.

When an agent takes on a heavy-duty workflow like that, it often needs to run for minutes, sometimes even hours. In standard web development, keeping an HTTP connection wide open for that long is a recipe for disaster. A minor network hiccup, a brief server timeout, or a laptop simply dipping into sleep mode, and the entire operation comes crashing down, forcing the developer to reset and start from scratch.

Recognizing this operational headache, Google DeepMind rolled out a major overhaul for its Managed Agents features within the Gemini API. The update lands just a month after Google pushed its unified Interactions API to general availability, signaling a definitive shift in the industry away from simple prompt-and-response text windows toward robust, industrial-grade background workers.

To understand why these new capabilities are turning heads, it helps to look at what happens under the hood of a Managed Agent. Instead of requiring engineers to build, secure, and maintain their own complex infrastructure to let an AI interact with a filesystem, the Gemini API handles the infrastructure natively. When an interaction is triggered—often utilizing a preview model codenamed Antigravity—the API provisions an isolated, remote Linux sandbox in the cloud. Within this secure digital playground, the agent can autonomously reason through a problem, execute Python code, install software packages, manage local files, and browse the web for real-time information.

The latest updates make this sandbox environment far more independent and practical for day-to-day software engineering.

The headline feature addresses the open-connection dilemma directly through long-running background execution. Instead of forcing a client application to hang on the line while the agent does its thinking, developers can now pass a simple background flag. The API immediately hands back an interaction ID and frees up the client. Behind the scenes, the cloud sandbox keeps humming along, independently working through its multi-step reasoning. The client application can then poll the server at its convenience, stream progress logs to an internal dashboard, or reconnect hours later to harvest the final output text or files.

Yet, an agent trapped entirely inside an isolated cloud sandbox has its limitations, especially when it needs to talk to proprietary enterprise data. To fix this, Google integrated native support for the Model Context Protocol (MCP), an open-source standard designed to bridge the gap between large language models and external systems. Instead of forcing engineers to write custom proxy middleware or complex wrapper APIs to let the sandbox see inside private databases, the agent can connect directly to remote MCP servers. This allows a developer to instruct an agent to look up an internal company database or cross-reference private telemetry logs, seamlessly blending corporate data with built-in tools like Google Search.

DeepMind has also refined how these agents juggle tasks that can be done entirely in the cloud versus tasks that must happen locally on a developer’s machine. Through a concept called step matching, the API acts as an automated traffic cop. If a developer mixes server-side tools with custom local functions, the Gemini infrastructure automatically runs things like code execution remotely, but pauses and shifts the interaction into a “requires action” state the moment a local business logic step is triggered, letting the client execute local code before handing control back to the cloud.

Finally, the engineering team fixed a classic, quiet project-killer: expiring network credentials. If an autonomous agent is working through a massive data-processing pipeline that takes all afternoon, the short-lived API keys or OAuth tokens it relies on to access external cloud storage will inevitably expire. Previously, updating those keys meant tearing down the entire environment and losing all progress. The new update allows developers to pass a refreshed token into an existing environment ID. The system swaps out the network access rules instantly, but leaves the entire sandbox state—including the local filesystem, cloned git repositories, and pre-installed dependencies—completely untouched.

What all of this points to is a quiet transformation in the architecture of artificial intelligence. The era of the chat bubble is slowly giving way to a resilient background fabric. By transforming Gemini from a conversational partner into an asynchronous cloud worker that manages its own sandbox, connects to open protocols, and survives credential rotations, Google is treating agents like predictable, heavy-duty software components. For developers who have spent the last year babysitting fragile, half-broken agent scripts, the shift to true background autonomy can’t come soon enough.


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

Apple removes iPhone 17 Pro models from its store
Apple unveils new iPhone 18 Pro cases and wrist strap
Apple adds AI-powered health features to Apple Watch and iPhone
iPhone 18 Pro introduces Apple’s first variable-aperture camera
Here’s everything Apple announced at its September 9 event

Also Read

The new BMW 3 Series camouflaged prototypes in Miramas.

BMW confirms new 3 Series with four- and six-cylinder engines

A promotional graphic for Adobe Acrobat showcasing an "Organic Chemistry Student Space." Chemistry PDF documents and notes are uploaded on the left, flanked by student profile avatars. In the center, yellow, green, and blue glass laboratory flasks hold colorful flowers, set against a bright yellow background. On the right, a white menu displays options to "Create" a "Study Guide," "Practice Quiz," or "Flashcards," with a cursor pointing toward "Flashcards."

Adobe Acrobat Student Spaces is now free worldwide

A screenshot of Adobe Premiere’s editing timeline featuring the Generative Media interface. A video clip on the timeline displays a woman wearing sunglasses and a yellow dress outdoors by a poolside table. An eyedropper cursor samples this clip as the "First frame" reference. The generative tool popup shows a text prompt starting with "Rising pull-back revealing neighborho…", with settings set to the Kling AI model, 1080p resolution, and 16:9 aspect ratio. Audio waveforms in green run beneath the video tracks.

Adobe unveils new AI-powered tools for Premiere and After Effects

A 3D graphic of digital document cards set against a warm pink and yellow gradient background. The central card displays a dark background with vibrant, glowing purple and blue floral petals, overlaid with white text that reads "Master services agreement." Surrounding the card are three white floating UI buttons with icons that say "Filter documents," "Analyze files in bulk," and "Export data to report."

Adobe Acrobat Studio can now search documents and analyze contracts

A geometric flat-art illustration centered on a dark green background, depicting security and data protection motifs. It features an arrangement of black and pastel-toned rectangular blocks, diagonal purple-and-black hatched patterns, and stylized gold keys and keyholes framing a large concentric circular lock mechanism.

Figma enterprise files can now be hosted in Japan

Apple iPhone 18 Pro lineup alongside Apple Watch Series 12, Apple Watch Ultra 4, and AirPods 5.

Apple’s new devices are up for preorder, except the iPhone Duo

Adobe Acrobat interface demonstration on a red-to-pink gradient background showing document-to-visual transformation features. In the center, an interactive report dashboard displays sales charts, growth metrics, and key performance indicators, labeled with a "Generate interactive report" button. To the right, a plain business report is transformed into a colorful, professionally designed blue-and-orange slide labeled with a "Stylize" action button.

Adobe turns dense PDFs into podcasts and presentations

Snapchat Plans event screens showing Birthday Party, camping, and Thanksgiving gatherings with dates, times, RSVPs, and friend lists.

Snapchat Plans makes “we should hang out” official

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.