No description
Find a file
2025-03-05 10:03:17 -08:00
.github/workflows feat: add tests (#843) 2025-03-04 17:25:46 -08:00
app fix: check chat/vote ownership during actions (#847) 2025-03-05 10:03:17 -08:00
artifacts feat: add tests (#843) 2025-03-04 17:25:46 -08:00
components chore: bump versions (#845) 2025-03-04 18:00:14 -08:00
docs feat: add tests (#843) 2025-03-04 17:25:46 -08:00
hooks chore: rename blocks to artifacts (#793) 2025-02-13 08:25:57 -08:00
lib feat: add tests (#843) 2025-03-04 17:25:46 -08:00
public feat: add tests (#843) 2025-03-04 17:25:46 -08:00
tests feat: add tests (#843) 2025-03-04 17:25:46 -08:00
.env.example feat: add reasoning model (#750) 2025-02-03 18:03:15 +03:00
.eslintrc.json Remove import order 2024-11-15 11:09:17 -05:00
.gitignore feat: add tests (#843) 2025-03-04 17:25:46 -08:00
biome.jsonc feat: add inline block document previews (#637) 2024-12-19 17:05:04 +05:30
components.json Use default shadcn styles and tweak prompt (#439) 2024-10-11 23:36:51 +05:30
drizzle.config.ts Switch to vercel's biome setup (#543) 2024-11-15 13:00:15 -05:00
LICENSE Clean up deps 2024-08-24 23:23:37 -05:00
middleware.ts Run prettier 2024-11-14 12:16:05 -05:00
next-env.d.ts chore: bump versions (#845) 2025-03-04 18:00:14 -08:00
next.config.ts feat: support image outputs during code execution (#674) 2025-01-08 00:00:21 +05:30
package.json chore: bump versions (#845) 2025-03-04 18:00:14 -08:00
playwright.config.ts fix: check chat/vote ownership during actions (#847) 2025-03-05 10:03:17 -08:00
pnpm-lock.yaml chore: bump versions (#845) 2025-03-04 18:00:14 -08:00
postcss.config.mjs feat: add sheet block (#743) 2025-02-03 11:03:48 +03:00
README.md Refactor to use hooks (#436) 2024-10-11 18:00:22 +05:30
tailwind.config.ts feat: add tests (#843) 2025-03-04 17:25:46 -08:00
tsconfig.json Refactor drizzle and db folder 2024-11-15 10:13:21 -05:00

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

Next.js AI Chatbot

An Open-Source AI Chatbot Template Built With Next.js and the AI SDK by Vercel.

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 OpenAI (default), Anthropic, Cohere, and other model providers
  • shadcn/ui
  • Data Persistence
  • NextAuth.js
    • Simple and secure authentication

Model Providers

This template ships with OpenAI gpt-4o as the default. However, with the AI SDK, you can switch LLM providers to 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 OpenAI 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 dev

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