No description
Find a file
2025-12-15 16:56:10 +00:00
.cursor/rules Restore Ultracite + fix sidebar (#1233) 2025-09-21 19:02:31 +01:00
.github/workflows fix: lint workflow (#1167) 2025-09-08 21:02:06 +01:00
.vscode Restore Ultracite + fix sidebar (#1233) 2025-09-21 19:02:31 +01:00
app chore: remove tokenlens and token usage tracking (#1357) 2025-12-15 16:56:10 +00:00
artifacts feat: dynamic model discovery from vercel ai gateway (#1353) 2025-12-14 21:26:49 +00:00
components chore: remove tokenlens and token usage tracking (#1357) 2025-12-15 16:56:10 +00:00
hooks fix: scroll behavior, browser back navigation, and weather widget sizing (#1336) 2025-11-30 03:48:27 +00:00
lib chore: remove tokenlens and token usage tracking (#1357) 2025-12-15 16:56:10 +00:00
public/images feat: reference geist from google fonts (#876) 2025-03-18 13:57:06 -07:00
tests test: add playwright e2e tests for chat, auth, model selector, and api (#1355) 2025-12-15 14:43:39 +00:00
.env.example Update Vercel Blob and Postgres documentation URLs in .env.example (#984) 2025-10-31 17:42:41 -07:00
.gitignore Fix/katex rendering issue 1213 (#1223) 2025-11-01 03:51:16 +00:00
biome.jsonc Restore Ultracite + fix sidebar (#1233) 2025-09-21 19:02:31 +01:00
components.json Upgrade to Tailwind CSS v4 (#1173) 2025-09-09 20:44:07 +01:00
drizzle.config.ts Restore Ultracite + fix sidebar (#1233) 2025-09-21 19:02:31 +01:00
instrumentation.ts Restore Ultracite + fix sidebar (#1233) 2025-09-21 19:02:31 +01:00
LICENSE Clean up deps 2024-08-24 23:23:37 -05:00
next-env.d.ts updates (#1347) 2025-12-10 03:30:21 +00:00
next.config.ts upgrade to next.js 16 (#1334) 2025-11-29 13:21:34 +00:00
package.json chore: remove tokenlens and token usage tracking (#1357) 2025-12-15 16:56:10 +00:00
playwright.config.ts test: add playwright e2e tests for chat, auth, model selector, and api (#1355) 2025-12-15 14:43:39 +00:00
pnpm-lock.yaml chore: remove tokenlens and token usage tracking (#1357) 2025-12-15 16:56:10 +00:00
postcss.config.mjs Restore Ultracite + fix sidebar (#1233) 2025-09-21 19:02:31 +01:00
proxy.ts upgrade to next.js 16 (#1334) 2025-11-29 13:21:34 +00:00
README.md docs: add database migration step to local setup instructions (#1135) 2025-10-31 17:30:07 -07:00
tsconfig.json fix: scroll behavior, browser back navigation, and weather widget sizing (#1336) 2025-11-30 03:48:27 +00:00
tsconfig.tsbuildinfo chore: remove tokenlens and token usage tracking (#1357) 2025-12-15 16:56:10 +00:00
vercel-template.json Add vercel-template.json (#1193) 2025-09-13 14:26:49 -04:00

Next.js 14 and App Router-ready AI chatbot.

Chat SDK

Chat SDK is a free, open-source template built with Next.js and the AI SDK that helps you quickly build powerful chatbot applications.

Read Docs · Features · Model Providers · Deploy Your Own · Running locally


Features

  • Next.js App Router
    • Advanced routing for seamless navigation and performance
    • React Server Components (RSCs) and Server Actions for server-side rendering and increased performance
  • AI SDK
    • Unified API for generating text, structured objects, and tool calls with LLMs
    • Hooks for building dynamic chat and generative user interfaces
    • Supports xAI (default), OpenAI, Fireworks, and other model providers
  • shadcn/ui
  • Data Persistence
  • Auth.js
    • Simple and secure authentication

Model Providers

This template uses the Vercel AI Gateway to access multiple AI models through a unified interface. The default configuration includes xAI models (grok-2-vision-1212, grok-3-mini) routed through the gateway.

AI Gateway Authentication

For Vercel deployments: Authentication is handled automatically via OIDC tokens.

For non-Vercel deployments: You need to provide an AI Gateway API key by setting the AI_GATEWAY_API_KEY environment variable in your .env.local file.

With the AI SDK, you can also switch to direct LLM providers like OpenAI, Anthropic, Cohere, and many more with just a few lines of code.

Deploy Your Own

You can deploy your own version of the Next.js AI Chatbot to Vercel with one click:

Deploy with Vercel

Running locally

You will need to use the environment variables defined in .env.example to run Next.js AI Chatbot. It's recommended you use Vercel Environment Variables for this, but a .env file is all that is necessary.

Note: You should not commit your .env file or it will expose secrets that will allow others to control access to your various AI and authentication provider accounts.

  1. Install Vercel CLI: npm i -g vercel
  2. Link local instance with Vercel and GitHub accounts (creates .vercel directory): vercel link
  3. Download your environment variables: vercel env pull
pnpm install
pnpm db:migrate # Setup database or apply latest database changes
pnpm dev

Your app template should now be running on localhost:3000.