Newsletter
Join the Community
Subscribe to our newsletter for the latest news and updates
Vercel example boilerplate that runs an AI SDK backend on a Hono server and deploys with the Vercel CLI.

Next.js ecommerce demo by Vercel that toggles two promotional banners with code-defined Flags SDK feature flags, Flags Explorer, and Vercel Analytics.

Next.js Edge Middleware example that uses Split feature flags to A/B test a marketing page and an about page, styled with Tailwind CSS.

Minimal Flask example that runs a WSGI Python API on Vercel Serverless Functions using the Python Runtime.

A persisted Next.js chat template for eve, built with shadcn/ui, Tailwind CSS, Streamdown, Better Auth, Drizzle, and Neon.
Hono + AI SDK is a Vercel framework boilerplate in the vercel/examples repository that serves AI SDK requests from a Hono backend and deploys to Vercel with the CLI.
Hono + AI SDK is a starter template from Vercel's examples collection (the framework-boilerplates/hono directory) that combines a Hono server with the AI SDK so AI model calls happen in a Hono backend rather than in a Next.js API route. It takes a prompt or request from the client and returns an AI SDK response streamed by your Hono routes, packaged as a Vercel project you can develop locally and ship with the Vercel CLI. A live demo is published at hono-ai-sdk-demo.vercel.app, and the repository it ships in carries roughly 5,156 GitHub stars.
vercel/examples/tree/main/framework-boilerplates/hono straight into your Vercel account.npm install then vc dev for local development, vc build for a local production build, and vc deploy to publish.vc dev serves the app at http://localhost:3000.vc deploy to get a running AI backend on Vercel without configuring servers.localhost:3000 before deploying.npm install and vc dev, then open http://localhost:3000 to test locally.npm install and vc build to produce a local build, or vc deploy to publish.Two prerequisites are stated: the Vercel CLI installed globally and a Vercel AI Gateway API key. Without the gateway key, the AI SDK calls the template makes will not authenticate, so plan for both before starting.
Install dependencies with npm install, start the dev server with vc dev, and open http://localhost:3000. A local production build is available through npm install followed by vc build.
No — the backend is a Hono server, which is the point of this example. It sits inside vercel/examples, a collection that also contains Next.js examples, but this specific boilerplate pairs Hono with the AI SDK.
Either use the Deploy with Vercel button, which clones the repo into your Vercel account, or run npm install and vc deploy from your own clone after installing the Vercel CLI.
Yes. Vercel publishes a running instance at hono-ai-sdk-demo.vercel.app, linked above the setup commands, so you can inspect the behaviour before cloning the repository.
