Project Setup
In this session, we'll build a chat-based AI agent with the AI SDK. The agent will be able to search the web, run commands in a cloud sandbox, and maintain persistent memory across conversations.
Let's start by setting up our project.
Clone the new project's repository locally.
git clone https://github.com/your-username/aie-london-starter.git
cd aie-london-starterInstall the Vercel CLI globally.
npm i -g vercelLink to your Vercel project.
vercel linkPull environment variables from Vercel.
vercel env pullInstall dependencies.
pnpm installStart the development server.
pnpm dev