Skip to content
Dashboard

The Agent Stack

Chief Product Officer
The Agent Stack gives you every tool you need to build complete, production-ready agentsThe Agent Stack gives you every tool you need to build complete, production-ready agents
The Agent Stack gives you every tool you need to build complete, production-ready agents

Link to headingConnect to models

Link to headingAI SDK

call-model.ts
import { generateText } from 'ai';
const { text } = await generateText({
model: 'anthropic/claude-sonnet-4.6',
prompt: 'Summarize the latest deploys.',
});
console.log(text);

Switch models by changing one string, not your code.

Link to headingAI Gateway

The last thing we want is to rebuild our infrastructure every time a new model drops.
Greg Chan CTO

Link to headingExecute complex workflows

Link to headingWorkflow SDK

Questions like 'how do we make this durable?' or 'what if the user disconnects mid-generation?' used to eat up our design discussions. Now they're solved, so we can ship as fast as we experiment.
Alec Jo Head of Applied AI @ FLORA

Link to headingVercel Sandbox

run-agent-code.ts.
import { Sandbox } from '@vercel/sandbox';
const sandbox = await Sandbox.create({ runtime: 'python3.13' });
await sandbox.writeFiles([
{ path: 'agent.py', content: Buffer.from(agentCode) },
]);
const result = await sandbox.runCommand('python', ['agent.py']);
console.log(await result.stdout());

Run an agent's unreviewed code in a throwaway, isolated microVM.

Link to headingConnect to data and tools

Link to headingVercel Connect

Vercel Connect integrates agents with your systems through short-lived tokens scoped to each taskVercel Connect integrates agents with your systems through short-lived tokens scoped to each task
Vercel Connect integrates agents with your systems through short-lived tokens scoped to each task

Link to headingChat SDK

Chat SDK is how one of our agents shows up in fifteen apps without building fifteen integrations.
Gavriel Cohen Co-founder and CEO

Link to headingeve, the agent framework

agent/
agent.ts # the model it runs on
instructions.md # who it is
tools/
run_sql.ts # what it can do
post_chart.ts
skills/
revenue-definitions.md # what it knows
subagents/
investigator/ # who it delegates to
channels/
slack.ts # where it lives
schedules/
monday-summary.ts # when it acts on its own

A data analyst agent, readable at a glance