Skip to content
Dashboard

Drives for Vercel Sandbox in Private Beta

import { Drive, Sandbox } from "@vercel/sandbox";
const drive = await Drive.getOrCreate({
name: "agent-workspace",
});
const sandbox = await Sandbox.create({
mounts: {
"/workspace": {
drive: drive.name,
mode: "read-write",
},
},
});

Ready to deploy?