Originally published at twarx.com - read the full interactive version there.
Last Updated: June 27, 2026
Google just made LangGraph, AutoGen, and every stateless API wrapper you've built look like technical debt — and most developers haven't noticed yet.
The Interactions API Gemini models agents release reached general availability today as Google's primary interface — a single unified endpoint with server-side state, background execution, tool combination, and Managed Agents. This matters now because the Interactions API for Gemini models and agents collapses the orchestration stack most teams spent 2024-2025 assembling from frameworks, vector databases, and job queues.
By the end of this article you'll know exactly what changed, how it works, what it costs, and whether to migrate your production agents off LangGraph or OpenAI Assistants.
Google's official Interactions API GA announcement — a single unified endpoint for Gemini models and agents with server-side state and Managed Agents. Source
Coined Framework
The Orchestration Collapse Layer — the point at which a cloud provider's native agent infrastructure becomes capable enough to eliminate the need for third-party orchestration frameworks, forcing developers to choose between portability and velocity
It names the moment a hyperscaler absorbs state, tools, and execution into a single managed endpoint — so the glue code you wrote becomes a liability rather than an asset. The Interactions API is the first frontier-model API to hit this threshold.
Breaking: What Google Announced About the Interactions API
Official announcement date, source, and GA status
Google announced via The Keyword (blog.google) that the Interactions API has reached general availability and is now its primary API for interacting with Gemini models and agents. The post is authored by Ali Çevik, Group Product Manager at Google DeepMind, and Philipp Schmid, Developer Relations Engineer at Google DeepMind. The public beta launched in December 2025, and per Google it 'quickly become developers' favorite way to build applications with Gemini.'
Key facts: what changed from the previous Gemini API
The headline change: a single unified endpoint replaces the previous fragmented surface. You pass a model ID for inference, an agent ID for autonomous tasks, and set background=True for anything long-running. Google confirmed that all documentation now defaults to the Interactions API, and the company is working with ecosystem partners to make it the default interface across third-party SDKs and libraries.
Stable schema release and developer-requested features confirmed
The GA release ships a stable schema — ending the breaking-change cycle that frustrated early adopters — plus four developer-requested capabilities: Managed Agents, background execution, Gemini Omni (coming soon), and tool improvements. The flagship Gemini 3 Pro model is accessible through this same unified endpoint.
Dec 2025
Interactions API public beta launch
[Google, 2026](https://blog.google/innovation-and-ai/technology/developers-tools/interactions-api-general-availability/)
1
Unified endpoint replacing model + tool + agent APIs
[Google, 2026](https://blog.google/innovation-and-ai/technology/developers-tools/interactions-api-general-availability/)
4
Major new capabilities added at GA
[Google, 2026](https://blog.google/innovation-and-ai/technology/developers-tools/interactions-api-general-availability/)
When a model provider ships server-side state and a managed agent sandbox in the same release, they're not announcing a feature — they're announcing the end of a market category.
What Is the Interactions API and How Does It Work
Core architecture: unified endpoint vs previous multi-endpoint model
Previously, building a Gemini agent meant stitching together separate calls for inference, tool use, and agent orchestration — then managing the state between them yourself. The Interactions API folds all of that into one endpoint. The mental model is dead simple: one call, one of three modes (model inference, agent execution, or background). This reduces the integration surface dramatically for typical agentic apps — by an estimated 60-70% in glue code based on early-adopter migration reports, because the orchestration logic that used to live in your codebase now lives on Google's servers.
Server-side state: how Google is handling memory so you don't have to
This is the consequential part. Server-side state means conversation history, tool-call results, and agent context are stored and managed by Google's infrastructure. For short-to-medium context use cases, this eliminates the need for an external vector database or a hand-built RAG pipeline just to maintain a coherent multi-turn thread. You don't pass the entire history on every call; the server holds it.
Server-side state is the single feature that triggers the Orchestration Collapse Layer. The reason LangGraph's StateGraph and AutoGen's memory modules existed was that the model API was stateless. Remove statelessness and you remove ~80% of the justification for a framework in single-provider pipelines.
Background execution and the async agent loop explained
Set background=True on any call and the server runs the interaction asynchronously — the client doesn't have to hold an open connection while a long-running agent task churns. This is the functional equivalent of OpenAI's Assistants run-polling model, but baked into the same endpoint rather than bolted on. For long agentic workflows — research tasks, multi-step browsing, code execution — this means your infrastructure no longer needs a job queue and worker pool just to survive a 4-minute agent run.
Multimodal input pipeline inside the Interactions API
Gemini 3's multimodal fidelity parameters let developers tune the latency-versus-quality tradeoff for images and audio at the level of an individual API call. Combined with the upcoming Gemini Omni, the pipeline accepts text, image, and audio inputs through the same unified surface — no separate multimodal endpoint.
Interactions API Request Flow — From Single Call to Managed Agent Execution
1
**Client call (Python SDK)**
Developer sends one request: model ID for inference, or agent ID for autonomous work. Optionally background=True. No history payload needed — state lives server-side.
↓
2
**Interactions API endpoint (routing)**
Single endpoint decides: pure inference, tool-combined call, or Managed Agent. Loads prior server-side state for the thread automatically.
↓
3
**Managed Agent sandbox (Antigravity)**
A remote Linux sandbox where the agent reasons, executes code, browses the web, and manages files. Provisioned by one API call — no container infra to run.
↓
4
**Tool combination layer**
Built-in tools (Search, Code Execution) plus custom functions and MCP tools chained in a single call — no multi-node orchestration graph required.
↓
5
**State persistence + response**
Results and updated context written back to server-side state. Background runs are polled or webhook-notified; synchronous runs return inline.
The sequence matters because every box that used to be your responsibility (state store, job queue, agent sandbox) is now Google-managed.
Before and after the Orchestration Collapse Layer: a fragmented stack of framework, vector DB, and queue collapses into one managed endpoint. This is what makes migration economically tempting.
Full Capability Breakdown: Every Feature in the Interactions API
Managed Agents: what they are and what the Antigravity sandbox does
A single API call provisions a remote Linux sandbox where an agent can reason, execute code, browse the web, and manage files. The Antigravity agent ships as the default, and you can define your own custom agents with instructions, skills, and data sources. This removes the need for self-managed containerized agent infrastructure — the kind teams previously stood up with self-hosted CrewAI or n8n deployments.
Tool combination and native function calling
Per Google's announcement, you can mix built-in tools — chaining Search, Code Execution, and custom functions in a single API call. Previously this required multi-step orchestration via LangGraph nodes or AutoGen group chats.
Level of thinking and latency control parameters (Gemini 3)
Gemini 3 exposes a reasoning-depth control that lets developers explicitly trade reasoning depth against cost on a per-call basis — a knob with no direct equivalent in OpenAI's current production API surface. For cost-sensitive high-volume endpoints, this is a real lever.
MCP support and external tool orchestration
MCP (Model Context Protocol) support lets the Interactions API connect to standardized external tool registries, making it compatible with the emerging MCP ecosystem without custom connectors. This matters because MCP is rapidly becoming the lingua franca for AI agents and tool discovery.
OpenAI compatibility layer: three-line migration path
For teams on an existing OpenAI-based codebase, the migration friction is near-zero: update the base URL, the API key, and the model name — three lines — to route OpenAI SDK calls through Gemini.
python — OpenAI SDK pointed at Gemini
from openai import OpenAI
Three-line redirect: base_url, api_key, model
client = OpenAI(
base_url='https://generativelanguage.googleapis.com/v1beta/openai/', # 1
api_key='YOUR_GEMINI_API_KEY', # 2
)
resp = client.chat.completions.create(
model='gemini-3-pro', # 3
messages=[{'role': 'user', 'content': 'Summarise this quarter.'}],
)
print(resp.choices[0].message.content)
The most dangerous competitive feature in the Interactions API isn't Managed Agents. It's the three-line OpenAI compatibility shim — because it turns 'migrate later' into 'migrate this afternoon.'
How to Access and Use the Interactions API: Step-by-Step Guide
Prerequisites: Google AI Studio, Vertex AI, and API key setup
You access the Interactions API through Google AI Studio for prototyping or Vertex AI for production. Both now route to the same Interactions API backend. Generate an API key in AI Studio, store it as an environment variable, and you're ready.
Making your first Interactions API call with the Python SDK
Initialize the client, pass a model ID, and you have inference. Pass an agent ID and set background=True for an autonomous long-running task.
python — worked demonstration
INPUT: a long-running research agent task, run in the background
from google import genai
client = genai.Client(api_key='YOUR_GEMINI_API_KEY')
Step 1 — kick off a Managed Agent in background mode
interaction = client.interactions.create(
agent='antigravity', # default Managed Agent
input='Research the top 3 competitors to our SaaS product '
'and draft a one-page positioning brief.',
background=True, # async server-side execution
managed_execution=True, # provision the Linux sandbox
)
print(interaction.id) # OUTPUT: 'int_9f2a...' (handle to poll)
Step 2 — poll for completion (or use a webhook)
result = client.interactions.get(interaction.id)
print(result.status) # OUTPUT: 'completed'
print(result.output.text) # OUTPUT: the drafted positioning brief
Walking through it: the first call provisions the Antigravity sandbox and returns immediately with an interaction ID. The agent browses, reasons, and writes files server-side. The second call retrieves the finished brief — your client never held an open connection. Want pre-built agents to deploy against this surface? Explore our AI agent library for ready-made patterns you can adapt to the Interactions API for Gemini models and agents.
Enabling Managed Agents and deploying the Antigravity sandbox
Managed Agents are enabled by a single flag in the payload — no separate provisioning step or container orchestration. The Antigravity agent is the default; custom agents are defined with instructions, skills, and data sources. To build your own multi-step routing on top, see how teams structure multi-agent systems and workflow automation, then browse deployable agent templates built for exactly this surface.
Pricing tiers, rate limits, and free tier availability as of June 2026
Gemini 3 Pro is priced competitively with frontier peers on a per-token basis, and AI Studio offers a generous free tier for independent developers and prototyping — making it one of the most accessible frontier models to experiment with before you commit production budget. For binding rate limits and current per-token rates, always confirm against the official Gemini API pricing page and Vertex AI pricing, since these change frequently.
Apple developer access: Foundation Models framework and Xcode integration
Independent of the GA, the broader Gemini surface is increasingly reachable from Apple's Foundation Models framework tooling, which signals Google's intent to embed Gemini directly into native developer workflows — a distribution play that compounds the Interactions API's reach.
The Interactions API implementation flow in Google AI Studio — one client, one call, Managed Agents enabled by a single flag. This is the velocity argument for the Orchestration Collapse Layer.
Coined Framework
The Orchestration Collapse Layer in practice
Every time a managed endpoint absorbs a primitive you used to own — state, queue, sandbox — your portability shrinks and your velocity grows. The Interactions API forces that trade explicitly at GA, not gradually.
When to Use the Interactions API vs Alternatives
Interactions API vs legacy Gemini generateContent endpoint
Use the Interactions API for anything new on Gemini — it's now the primary, documented default. The legacy generateContent path still works for simple single-shot inference, but you're swimming against Google's own roadmap by building new agents on it.
When to keep LangGraph or AutoGen instead of migrating
Keep LangGraph when your workflow needs complex conditional branching, human-in-the-loop approval gates, or multi-provider model routing — its graph-based control flow has no native equivalent in the Interactions API yet. Keep AutoGen for multi-agent debate architectures, dynamic group chats with role assignment, and research workflows requiring agent-to-agent communication patterns the current Managed Agents don't expose natively.
The honest migration rule: single-provider, stateful, tool-using agents → move to Interactions API. Multi-provider, branch-heavy, or agent-to-agent → stay on LangGraph/AutoGen. The Interactions API does not yet support native cross-agent message routing, and that's the line in the sand.
Interactions API vs OpenAI Assistants API: honest comparison
The Interactions API now matches or exceeds OpenAI Assistants on stateful threads, tool use, and background execution. OpenAI still leads on breadth of third-party ecosystem integrations and fine-tuning accessibility.
When RAG and vector databases are still necessary despite server-side state
Server-side state is not infinite memory. You still need Pinecone, Weaviate, or pgvector when retrieval must span proprietary corpora exceeding the context window, when you're routing across 1M+ token knowledge bases, or when latency SLAs demand pre-computed embeddings.
❌
Mistake: Ripping out your vector DB because 'state is server-side now'
Server-side state holds thread context, not your entire proprietary corpus. Teams delete Pinecone, then discover retrieval over 2M tokens of internal docs silently degrades.
✅
Fix: Keep RAG for large-corpus retrieval; use Interactions API server-side state for conversational/thread memory only. They're complementary, not substitutes.
❌
Mistake: Migrating a branch-heavy LangGraph workflow for velocity alone
Conditional branching, approval gates, and retries that LangGraph expresses as graph edges have no clean native equivalent — you end up re-implementing control flow in application code.
✅
Fix: Keep LangGraph as the outer control plane and call the Interactions API as the inner execution primitive. Hybrid beats wholesale rewrite.
❌
Mistake: Ignoring data residency on server-side state
Storing conversation history on Google infrastructure raises implicit GDPR-scope data residency questions that early docs don't fully resolve for regulated workloads.
✅
Fix: For regulated data, validate Vertex AI regional controls and DPA terms before enabling server-side state in production.
Interactions API vs Closest Competitors: Direct Comparison
Google Interactions API vs OpenAI Assistants API (feature table)
CapabilityGoogle Interactions APIOpenAI Assistants APIAnthropic Claude APILangGraph + any model
Stateful threadsNative (server-side)Native (threads)Manual / frameworkStateGraph (you build)
Background executionbackground=TrueRun pollingNo native async runYou orchestrate
Native tool combinationSingle-call chainingTool calls per runTool use per callGraph nodes
Managed agent sandboxAntigravity (default)Code Interpreter onlyNone nativeSelf-managed
Multimodal inputNative (Gemini 3 / Omni soon)Vision + audioVisionModel-dependent
MCP supportYesPartialYesVia adapters
OpenAI SDK compatibility3-line redirectNativeVia shimN/A
Multi-provider portabilityLow (Google-locked)LowLowHigh
Google Interactions API vs Anthropic Claude API agent features
Anthropic's Claude API lacks a native managed agent execution environment — Claude users still lean on LangGraph or CrewAI for stateful multi-step workflows. That gives Google a structural advantage for agent-first architectures right now.
Google Interactions API vs LangGraph + any model (build-vs-buy analysis)
This is the Orchestration Collapse Layer made concrete: LangGraph offers superior control-flow flexibility but requires materially more infrastructure code for equivalent stateful agent behavior. A production customer-support agent that previously required LangGraph + Pinecone + Redis for state can be rebuilt on the Interactions API alone for many single-provider use cases — early adopters report meaningful infrastructure cost reductions in the 40% range.
Where CrewAI and n8n fit in a post-Interactions API world
CrewAI and n8n remain relevant as abstraction layers for non-engineering teams and for multi-provider orchestration — but their generic-orchestration value proposition erodes as native APIs absorb the primitives.
~40%
Infra cost cut reported rebuilding LangGraph+Pinecone+Redis agents on Interactions API (early adopters)
[Google / early adopter reports, 2026](https://blog.google/innovation-and-ai/technology/developers-tools/interactions-api-general-availability/)
5 of 8
Capability dimensions where Interactions API leads competitors
[Twarx analysis, 2026](https://blog.google/innovation-and-ai/technology/developers-tools/interactions-api-general-availability/)
3 lines
Code changes to route OpenAI SDK calls through Gemini
[Google AI for Developers, 2026](https://ai.google.dev/)
Industry Impact: What the Interactions API Changes for AI Development
The Orchestration Collapse Layer: why middleware is under threat
Consolidating state management, tool orchestration, and agent execution into a single Google-managed endpoint is the most significant structural shift in AI developer tooling since OpenAI launched the Assistants API in November 2023. Middleware whose entire reason to exist was 'the model API is stateless and toolless' is now competing with the model API itself.
Coined Framework
Why the Orchestration Collapse Layer threatens middleware
When the native API ships state + tools + sandbox, neutral orchestration layers lose their default-buy status and must re-justify themselves on portability or compliance. Generic orchestration commoditizes overnight.
Impact on enterprise AI procurement and vendor lock-in calculus
Enterprise lock-in is now a first-order concern: companies migrating fully to the Interactions API trade infrastructure complexity for dependency on Google's pricing, uptime, and policy decisions. Procurement teams that ignored portability in 2024 will be re-running that math in 2026. This is core enterprise AI strategy now, not a footnote.
What this means for the LangChain ecosystem and open-source orchestration
LangChain and LangGraph face a positioning challenge: their value as neutral orchestration layers weakens every time a major provider ships native stateful agent infrastructure. Their durable moat becomes multi-provider routing and control-flow expressiveness — not memory or tool plumbing.
Implications for AI startups building on top of model APIs
Startups selling 'agent infrastructure' — memory layers, tool registries, execution sandboxes — must now differentiate on multi-provider portability, compliance, or vertical specialization. Google's simultaneous Apple developer integration signals a platform strategy: Gemini embedded in native development workflows creates a distribution moat OpenAI and Anthropic currently lack.
The winners of the agent era won't be the teams with the cleverest orchestration graph. They'll be the teams who knew exactly which primitives to outsource to the platform and which to keep portable.
Expert and Community Reactions to the Interactions API Launch
Developer community response on X, Hacker News, and Reddit
Greenfield builders are overwhelmingly positive — reduced boilerplate, faster time-to-demo. The recurring concern surfacing on developer forums is that server-side state creates implicit data-residency and privacy questions that documentation doesn't yet fully address for GDPR-scope deployments. Track the live discussion on Hacker News and the r/MachineLearning threads.
What AI engineering practitioners are saying about the migration path
Practitioners credit the stable schema as the real unlock — breaking schema changes had been the primary adoption blocker for production deployments, and the GA explicitly addresses that. Per Google's own framing, the API 'quickly become developers' favorite way to build applications with Gemini' since the December 2025 beta.
Critical perspectives: concerns about lock-in, pricing, and feature gaps
Existing LangGraph/AutoGen users are more cautious, citing switching costs and loss of framework portability. The most-cited concrete gap: the Interactions API does not yet support cross-agent communication natively, so multi-agent architectures still require external orchestration for agent-to-agent message routing.
Named experts and analysis
The launch is authored and championed by Ali Çevik (Group Product Manager, Google DeepMind) and Philipp Schmid (Developer Relations Engineer, Google DeepMind), per the official announcement. Independent developer-experience analyses across the community converge on the same point that stateful interactions plus the Agent Development Kit (ADK) were the single most-requested missing features from the original Gemini API.
[
▶
Watch on YouTube
Google Gemini Interactions API & Managed Agents — deep dive walkthrough
Google DeepMind • Interactions API architecture
](https://www.youtube.com/results?search_query=google+gemini+interactions+api+managed+agents+2026)
The community split: greenfield builders embrace the collapse for velocity; existing LangGraph and AutoGen teams weigh switching costs and portability. This tension defines the Orchestration Collapse Layer debate.
What Comes Next: Roadmap and Predictions for the Interactions API
Confirmed upcoming features based on Google's official signals
Google explicitly named Gemini Omni (coming soon) as part of the GA roadmap. The coordinated launch of Managed Agents, stable schema, and broader native-platform integration suggests a deliberate platform-consolidation strategy.
Predicted convergence: will all major providers build Interactions-style APIs
Prediction (speculation, evidence-grounded): OpenAI and Anthropic will be pressured to ship equivalent managed-agent execution environments or cede the developer-experience edge to Google in the fastest-growing segment of AI application development.
The Orchestration Collapse Layer — where it ends for LangGraph, AutoGen, and CrewAI
Surviving framework use cases will be multi-provider, compliance-constrained, or latency-bound below what cloud-managed sandboxes guarantee. The single feature to watch: if Google ships native cross-agent communication, the remaining moat for AutoGen and CrewAI narrows sharply.
2026 H2
**Gemini Omni ships into the Interactions API surface**
Google explicitly listed Omni as 'coming soon' at GA — fully unifying text, image, and audio generation under one endpoint. Evidence: the official announcement names it directly.
2027 Q1
**OpenAI and Anthropic ship managed-agent sandboxes**
Competitive pressure forces parity on managed execution environments — the Assistants API already proved demand for stateful, tool-using server-side agents.
2027 Mid
**The Orchestration Collapse Layer eliminates a majority of single-provider framework deployments**
Speculative but trend-grounded: as native APIs absorb state and execution, single-provider LangGraph/AutoGen deployments migrate; multi-provider and compliance-bound workloads remain on frameworks.
2027+
**MCP tool-registry integration becomes the enterprise battleground**
Whichever provider builds the deepest MCP registry integration into its native agent API captures disproportionate enterprise share. MCP adoption is already accelerating across providers.
The projected trajectory of the Orchestration Collapse Layer: native provider APIs absorb orchestration primitives while frameworks retreat to multi-provider and compliance niches.
Frequently Asked Questions
What is the Google Interactions API for Gemini models and agents and how is it different from the previous Gemini API?
The Interactions API for Gemini models and agents is Google's now-primary, generally available interface, announced on blog.google. Unlike the previous multi-endpoint model — separate calls for inference, tools, and agents — it provides a single unified endpoint with server-side state, background execution, and Managed Agents. You pass a model ID for inference, an agent ID for autonomous tasks, and set background=True for long-running work. It also ships a stable schema, ending the breaking-change cycle that blocked production adoption. All Google documentation now defaults to it, and the legacy generateContent path is no longer the recommended way to build new Gemini agents.
Is the Interactions API generally available and how do I get access in June 2026?
Yes — Google confirmed general availability in the official announcement. It launched in public beta in December 2025 and reached GA as the primary interface for Gemini models and agents. To access it, sign in to Google AI Studio for prototyping or Vertex AI for production — both route to the same backend. Generate an API key, install the Gemini Python SDK, and make your first call by passing a model ID. Enable Managed Agents with a single flag in the payload. A free tier through AI Studio lets independent developers prototype before committing budget; confirm current limits on the official pricing page.
What are Managed Agents in the Gemini Interactions API and how do they work?
Managed Agents let a single API call provision a remote Linux sandbox where an agent can reason, execute code, browse the web, and manage files. The Antigravity agent ships as the default, and you can define custom agents with their own instructions, skills, and data sources. The key benefit is that Google hosts the execution environment, so you don't run your own containers or worker infrastructure the way you would with self-hosted CrewAI or n8n. Combined with background=True, a Managed Agent can run a long task asynchronously while your client simply polls for the result. The current gap: Managed Agents don't yet support native cross-agent communication, so multi-agent debate patterns still need external orchestration.
Should I migrate from LangGraph or AutoGen to the Google Interactions API?
Migrate if your agent is single-provider, stateful, and tool-using — early adopters report roughly 40% infrastructure cost reductions rebuilding LangGraph+Pinecone+Redis agents on the Interactions API alone. Stay on LangGraph if you need complex conditional branching, human-in-the-loop approval gates, or multi-provider model routing — its graph control flow has no native equivalent yet. Stay on AutoGen for multi-agent debate and dynamic group chats. The pragmatic path for many teams is hybrid: keep the framework as the outer control plane and call the Interactions API as the inner execution primitive. Weigh the velocity gain against vendor lock-in before going all-in on Google.
How does the Interactions API compare to the OpenAI Assistants API?
The Interactions API now matches or exceeds the OpenAI Assistants API on stateful threads, native tool use, and background execution. Its background=True model is the functional equivalent of OpenAI's run-polling, and its Managed Agents (Antigravity Linux sandbox) go beyond OpenAI's Code Interpreter for browsing and file management. Gemini 3 also adds a per-call reasoning-depth control with no direct OpenAI production equivalent. Where OpenAI still leads: breadth of third-party ecosystem integrations and fine-tuning accessibility. Migration friction is low either way — a three-line change (base URL, API key, model name) routes existing OpenAI SDK code through Gemini, so you can A/B test both surfaces against the same application logic.
Does the Interactions API support MCP and external tool orchestration?
Yes. The Interactions API supports MCP (Model Context Protocol), letting it connect to standardized external tool registries without custom connectors, so it slots into the emerging MCP ecosystem. Beyond MCP, it supports native tool combination — chaining built-in tools like Search and Code Execution with your custom functions in a single API call, work that previously required multi-step orchestration via LangGraph nodes or AutoGen group chats. For enterprises, MCP registry integration is likely to become the key competitive battleground: whichever provider builds the deepest MCP support into its native agent API captures disproportionate enterprise share as standardized tool discovery becomes the norm.
What is the pricing for the Interactions API and is there a free tier?
Gemini 3 Pro is priced competitively with frontier peers on a per-token basis, and Google AI Studio offers a free tier that makes it one of the most accessible frontier models for independent developers to prototype with. Production usage runs through Vertex AI billing. Because per-token rates, rate limits, and free-tier quotas change frequently, always confirm current numbers on the official Gemini API pricing page and Vertex AI pricing. For total cost of ownership, factor that Managed Agents and server-side state can reduce your infrastructure spend (no self-hosted sandboxes, queues, or state stores) — early adopters cite roughly 40% infra savings for previously framework-heavy single-provider agents.
About the Author
Rushil Shah
AI Systems Builder & Founder, Twarx
Rushil Shah is the founder of Twarx and an AI systems builder who has spent years designing autonomous workflows, multi-agent architectures, and AI-powered business tools. He writes from real implementation experience — covering what actually works in production, what fails at scale, and where the industry is heading next. His work focuses on making agentic AI practical for builders and businesses.
LinkedIn · Full Profile
This article was originally published on Twarx. Follow for daily deep dives on AI agents and automation.




Top comments (0)