---
schema_version: "newruntime-agent-readable-v0.2"
type: "post"
stable_id: "post:vercel-agent-platform-control-plane"
slug: "vercel-agent-platform-control-plane"
title: "Vercel's Agent Platform Surface Is Becoming a Control Plane"
description: "Regional inference, scoped Connect tokens, sandbox forking, and Python WebSockets show Vercel turning agent infrastructure into runtime control surfaces."
retrieval_nugget: "Regional inference, scoped Connect tokens, sandbox forking, and Python WebSockets show Vercel turning agent infrastructure into runtime control surfaces. Vercel shipped several small developer-platform releases in the same window. Read separately, they are changelog items. Read together, they show an agent platform control plane taking shape. AI Gateway now supports regional inference."
status: "published"
published_at: "2026-07-29"
updated_at: "2026-07-29"
record_date: "2026-07-29"
date_kind: "published_at"
topics: ["agents","infrastructure","api-design","developer-tools"]
source_urls: ["https://x.com/vercel_dev/status/2081845326839951374","https://vercel.com/changelog/regional-inference-now-available-on-ai-gateway","https://x.com/vercel_dev/status/2082140759298605481","https://vercel.com/changelog/vercel-connect-preset-connectors","https://x.com/vercel_dev/status/2082156155120574610","https://vercel.com/changelog/vercel-sandbox-supports-forking","https://x.com/vercel_dev/status/2082212864560136280","https://vercel.com/changelog/websocket-support-is-now-available-for-python-functions"]
visuals: [{"id":"vercel-agent-platform-control-plane-nano-banana","kind":"editorial-diagram","role":"hero","src":"https://newruntime.com/images/posts/vercel-agent-platform-control-plane-nano-banana.webp","alt":"Hand-drawn control-plane diagram where an agent app routes through gateway region controls, scoped tokens, sandbox forks, and WebSocket runtime paths before doing work.","caption":"Vercel's small platform releases point to one agent-control surface: where models run, what services can be reached, how environments fork, and how live sessions stay connected.","credit":"New Runtime synthesis from public source inspection","source_url":"https://vercel.com/changelog/regional-inference-now-available-on-ai-gateway","generated_with":"nano-banana-style-imagegen","width":1600,"height":900,"legend":[{"label":"Gateway","description":"AI Gateway can pin inference to US or EU and report where each request ran."},{"label":"Tokens","description":"Vercel Connect preset connectors mint scoped, short-lived tokens for 100+ services."},{"label":"Runtime","description":"Sandbox forking and Python WebSockets make agent environments branchable and live."}]}]
routes: {"html":"https://newruntime.com/posts/vercel-agent-platform-control-plane/","markdown":"https://newruntime.com/posts/vercel-agent-platform-control-plane.md","json":"https://newruntime.com/posts/vercel-agent-platform-control-plane.json"}
source_format: "markdown"
---

# Vercel's Agent Platform Surface Is Becoming a Control Plane

## Retrieval answer

Regional inference, scoped Connect tokens, sandbox forking, and Python WebSockets show Vercel turning agent infrastructure into runtime control surfaces. Vercel shipped several small developer-platform releases in the same window. Read separately, they are changelog items. Read together, they show an agent platform control plane taking shape. AI Gateway now supports regional inference.

Vercel shipped several small developer-platform releases in the same window. Read separately, they are changelog items. Read together, they show an agent platform control plane taking shape.

AI Gateway now supports regional inference. A request can set an inference region for US or EU, and if no provider can serve that region, the request fails rather than silently running somewhere else. The response reports the region that served it, making residency a verifiable runtime property.

Vercel Connect added preset connectors for 100+ services. The connector presets pre-fill service configuration, then applications request scoped, short-lived tokens for attached services. That is a useful agent primitive: the app does not need to hold broad permanent credentials when a task only needs a narrow capability.

Vercel Sandbox now supports `Sandbox.fork()`. A fork starts from the source snapshot, inherits config and environment variables, and can override selected resources. That is exactly the shape agent workloads need when several branches, tenants, or experiments start from the same base environment.

Python Functions now support WebSockets for ASGI and WSGI applications, including FastAPI, Django, and Flask. That matters for real-time AI streaming, live chat, and collaborative sessions.

## New Runtime Read

The common thread is control: where inference happens, which external systems a task can access, how an execution environment branches, and whether the runtime can keep a live bidirectional session open.

Agent-ready infrastructure is not one magical endpoint. It is a bundle of boring but consequential controls. Vercel's releases make those controls visible as product surfaces.
