No description
Find a file
2024-12-05 15:29:33 +03:00
.github/workflows Fix GH actions 2024-11-15 12:19:25 -05:00
app feat: edit and resubmit messages (#592) 2024-12-05 15:29:33 +03:00
components feat: edit and resubmit messages (#592) 2024-12-05 15:29:33 +03:00
hooks feat: edit and resubmit messages (#592) 2024-12-05 15:29:33 +03:00
lib feat: edit and resubmit messages (#592) 2024-12-05 15:29:33 +03:00
public Refactor to use hooks (#436) 2024-10-11 18:00:22 +05:30
.env.example chore: fix typo in .env.example (#583) 2024-12-03 16:56:34 +03:00
.eslintrc.json Remove import order 2024-11-15 11:09:17 -05:00
.gitignore Start updating deps 2023-11-26 12:07:13 -06:00
biome.jsonc Switch to vercel's biome setup (#543) 2024-11-15 13:00:15 -05:00
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 Refactor to use hooks (#436) 2024-10-11 18:00:22 +05:30
next.config.ts Persist input text in local storage (#472) 2024-10-31 21:02:05 +05:30
package.json fix: update sidebar structure to match shadcn spec (#591) 2024-12-04 18:20:35 +03:00
pnpm-lock.yaml fix: update sidebar structure to match shadcn spec (#591) 2024-12-04 18:20:35 +03:00
postcss.config.mjs Refactor to use hooks (#436) 2024-10-11 18:00:22 +05:30
README.md Refactor to use hooks (#436) 2024-10-11 18:00:22 +05:30
tailwind.config.ts Use geist icons and group history by ranges (#471) 2024-10-31 15:39:07 +05:30
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.