Skip to main content
reopt Handbook
reopt Handbook
Vercel Enterprise AI Platform

Platform Foundation

Platform ArchitectureAI SDK RuntimeAI Gateway Control Plane

Execution Runtime

Workflow Durable ExecutionSandbox Tool RuntimeMCP Enterprise DataQueues and Async Jobs

Prompt and Quality

Prompt Engineering and GuardrailsRAG and Retrieval-Augmented GenerationObservability and Evaluation

Operations

Security GovernanceCost and ReliabilityDeployment and AI CI/CD

Scenarios

Customer Support Agent ArchitectureInternal Research Agent ArchitectureApproval Backoffice AutomationCoding Orchestration

Orchestration Patterns

Graph-Centric OrchestrationPractical Orchestration PlaybookMulti-Agent Architecture

Appendix

Migration GuideReferencesVerificationUpdates
Handbook›Vercel Enterprise AI Platform›Platform Architecture
한국어English

Platform Architecture

Split enterprise AI systems into experience, control, runtime, async, and governance planes.

Key takeaways

  • A model call inside a route handler is not a platform; it becomes one when control, runtime, data, and governance responsibilities are separated.
  • The architecture splits into experience, control, agent, tool runtime, async, and governance planes, each with a distinct failure impact.
  • Keep request-response work small and resumable, and put model routing and provider policy behind a control plane.
  • Isolate risky tools from the application runtime and use queues for bursty or batch work.
  • Attach observability from the first production experiment.

Enterprise AI architecture starts by naming boundaries. A model call inside a route handler is not a platform; it becomes a platform when control, runtime, data, and governance responsibilities are separated.

Platform Planes

PlaneResponsibilityFailure impact
ExperienceUI, auth context, streaming responsePoor user experience
ControlModel routing, policy, cost, fallbackProvider sprawl and policy drift
AgentLong-running tasks and approvalsStuck background work
Tool runtimeCode, file, browser, and shell executionData leakage or lateral movement
AsyncFan-out, batch, retries, rate controlPipeline backlog
GovernanceLogs, alerts, audit, securityIncidents become invisible

Design Rules

  • Keep request-response work small and resumable.
  • Put model routing and provider policy behind a control plane.
  • Isolate risky tools from the application runtime.
  • Use queues for bursty or batch work.
  • Attach observability from the first production experiment.

Related docs

AI Gateway Control Plane

Centralize model routing, provider fallback, usage policy, and cost governance.

Verification

A checklist for validating an enterprise AI platform on Vercel.

Secure Architecture

AI Security and Compliance Operations · Design AI systems with policy boundaries, isolation, logging, and safe tool access.

Ch5. agent.ts, Models, Compaction

Enterprise Eve Agent Development · Interpret defineAgent configuration as runtime policy for models, output schemas, compaction, and experimental flags.

Ch1. System Architecture

LLMOps and AgentOps in Production · Separate the control plane and data plane to improve both reliability and change velocity

Vercel Enterprise AI Platform

A platform handbook for designing enterprise AI products with AI SDK, AI Gateway, Workflow, Sandbox, and Queues.

AI SDK Runtime

Use AI SDK as the application runtime layer for streaming, tools, agents, and telemetry.

On this page

Platform PlanesDesign Rules