chatbot-template/README.md

62 lines
3.8 KiB
Markdown
Raw Normal View History

2023-06-16 18:25:23 -04:00
<a href="https://chat.vercel.ai/">
2024-10-11 18:00:22 +05:30
<img alt="Next.js 14 and App Router-ready AI chatbot." src="app/(chat)/opengraph-image.png">
2023-06-16 18:25:23 -04:00
<h1 align="center">Next.js AI Chatbot</h1>
2023-06-16 17:03:49 -05:00
</a>
<p align="center">
2024-10-11 18:00:22 +05:30
An Open-Source AI Chatbot Template Built With Next.js and the AI SDK by Vercel.
2023-06-16 17:03:49 -05:00
</p>
<p align="center">
2023-06-16 21:16:30 -04:00
<a href="#features"><strong>Features</strong></a> ·
2023-06-16 17:03:49 -05:00
<a href="#model-providers"><strong>Model Providers</strong></a> ·
2023-06-16 17:16:19 -05:00
<a href="#deploy-your-own"><strong>Deploy Your Own</strong></a> ·
2024-10-11 18:00:22 +05:30
<a href="#running-locally"><strong>Running locally</strong></a>
2023-06-16 17:03:49 -05:00
</p>
<br/>
2023-06-16 21:16:30 -04:00
## Features
2023-05-19 14:25:15 -04:00
2023-06-16 19:21:57 -04:00
- [Next.js](https://nextjs.org) App Router
2024-10-11 18:00:22 +05:30
- Advanced routing for seamless navigation and performance
- React Server Components (RSCs) and Server Actions for server-side rendering and increased performance
- [AI SDK](https://sdk.vercel.ai/docs)
- Unified API for generating text, structured objects, and tool calls with LLMs
- Hooks for building dynamic chat and generative user interfaces
2025-03-14 19:00:22 -07:00
- Supports xAI (default), OpenAI, Fireworks, and other model providers
2023-06-13 16:05:27 +04:00
- [shadcn/ui](https://ui.shadcn.com)
2023-06-11 10:25:51 -04:00
- Styling with [Tailwind CSS](https://tailwindcss.com)
2024-10-11 18:00:22 +05:30
- Component primitives from [Radix UI](https://radix-ui.com) for accessibility and flexibility
- Data Persistence
- [Vercel Postgres powered by Neon](https://vercel.com/storage/postgres) for saving chat history and user data
- [Vercel Blob](https://vercel.com/storage/blob) for efficient file storage
- [NextAuth.js](https://github.com/nextauthjs/next-auth)
- Simple and secure authentication
2023-06-11 10:25:51 -04:00
## Model Providers
2025-03-14 19:00:22 -07:00
This template ships with [xAI](https://x.ai) `grok-2-1212` as the default chat model. However, with the [AI SDK](https://sdk.vercel.ai/docs), you can switch LLM providers to [OpenAI](https://openai.com), [Anthropic](https://anthropic.com), [Cohere](https://cohere.com/), and [many more](https://sdk.vercel.ai/providers/ai-sdk-providers) with just a few lines of code.
2023-06-11 10:25:51 -04:00
2023-06-16 17:16:19 -05:00
## Deploy Your Own
2023-06-16 18:23:17 -04:00
You can deploy your own version of the Next.js AI Chatbot to Vercel with one click:
2023-06-16 17:16:19 -05:00
[![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2Fvercel%2Fai-chatbot&env=AUTH_SECRET&envDescription=Generate%20a%20random%20secret%20to%20use%20for%20authentication&envLink=https%3A%2F%2Fgenerate-secret.vercel.app%2F32&project-name=my-awesome-chatbot&repository-name=my-awesome-chatbot&demo-title=AI%20Chatbot&demo-description=An%20Open-Source%20AI%20Chatbot%20Template%20Built%20With%20Next.js%20and%20the%20AI%20SDK%20by%20Vercel&demo-url=https%3A%2F%2Fchat.vercel.ai&products=%5B%7B%22type%22%3A%22integration%22%2C%22protocol%22%3A%22ai%22%2C%22productSlug%22%3A%22grok%22%2C%22integrationSlug%22%3A%22xai%22%7D%2C%7B%22type%22%3A%22integration%22%2C%22protocol%22%3A%22ai%22%2C%22productSlug%22%3A%22api-key%22%2C%22integrationSlug%22%3A%22groq%22%7D%2C%7B%22type%22%3A%22integration%22%2C%22protocol%22%3A%22storage%22%2C%22productSlug%22%3A%22neon%22%2C%22integrationSlug%22%3A%22neon%22%7D%2C%7B%22type%22%3A%22blob%22%7D%5D)
2023-06-17 09:18:55 +02:00
2023-06-11 10:25:51 -04:00
## Running locally
2023-09-02 12:02:55 +01:00
You will need to use the environment variables [defined in `.env.example`](.env.example) to run Next.js AI Chatbot. It's recommended you use [Vercel Environment Variables](https://vercel.com/docs/projects/environment-variables) for this, but a `.env` file is all that is necessary.
2023-06-11 10:25:51 -04:00
2025-03-14 19:00:22 -07:00
> 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.
2023-06-11 10:25:51 -04:00
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`
```bash
pnpm install
pnpm dev
```
2023-06-16 19:06:54 -04:00
Your app template should now be running on [localhost:3000](http://localhost:3000/).