opensvn / chatgpt-vercel

Powered by OpenAI API GPT-4/3.5 and Vercel, support muti text conversations/prompts preset/image generation -- 支持多组文本对话/预设提示/图像生成,由 OpenAI API GPT-4/3.5 和 Vercel 提供支持

Home Page:https://chatgpt-vercel-sample.vercel.app/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ChatGPT-Vercel

license

English | 简体中文

Introduction

Building your own ChatGPT website by Vercel, support muti text conversations/preset prompts/images generation. Powered by OpenAI API GPT-4/3.5 and Vercel.

Features

  • Text Conversation
  • Preset Prompts
  • Images Generation
  • Audio

Live Demo

User Guide

You can access the online demo above or deploy it privately for experience.

Conversation

Click the icon at the top left to add a conversation, which has two types:

  • Text conversation:
    • By default, it is a continuous conversation, and each sending will carry the full context.
    • Supports adding preset prompts, type / or click the button at the bottom left to add.
    • Supports model configuration, click the settings icon at the top right to configure.
  • Image generation conversation:
    • Does not support continuous conversation, and each sending will not carry the context.
    • Directly input the image effect you want, for example: a cat.
    • The valid access time of the image link is 2 hours. Please save it in time if necessary.

History record

When Save all conversations is enabled in the global settings, it will be saved to local cache. By default, it will not be saved.

Operation

  • Press Enter to send
  • Press Shift+Enter to line break
  • Enter / to add preset prompts, and searching is also supported.

All settings

see Configurations

Getting Started

1. Create Project

Create Vercel project from a github forked project(recommand) or the following Deploy button.

Deploy with Vercel

2. Set OPENAI_API_KEY

There are three ways to set your OpenAI API Key:

  • Set Vercel Environment Variables OPENAI_API_KEY
  • Rename your .env.expample file to .env and set OPENAI_API_KEY
  • Set OPENAI_API_KEY within the page

Attention: For Vercel, all environment variables need to be redeployed to take effect.

Configurations

Deployment Configurations

All deployment configurations could be configured in the .env file or in Environment Variables of Vercel

Configuration Default Value Description
OPENAI_API_KEY - Key for API request, how to generate
LANGUAGE en Website language, including prompts. Supported languages: zh/en

Global Configurations

All global configurations will be stored locally

Configuration Default Value Description
OpenAI Api Key - The same with the deployment configuration
Save all conversations false The conversation won't be lost after the page is refreshed
Model gpt-3.5-turbo Model used in api request, supported models
Continuous conversations true Carry the full context for the conversations
Number of generated images 1 The number of images generated in a single image generation conversation

Development

Requirements:

  • NodeJS v16.12.0 or higher
  • pnpm v7 or higher

Proxy

  • By default, a custom proxy is used to request openapi locally, and LOCAL_PROXY needs to be set in .env. There is currently no default proxy, so if you choose to set up a proxy, you assume the associated risks.
  • If there is no need for a proxy, you can disable local proxy by setting DISABLE_LOCAL_PROXY=true in the .env file. At this point, api.openai.com will be directly requested.

Development:

  • Run pnpm dev
  • Expose port, for example, when using in cloud ide, run pnpm start

Build:

  • Run pnpm build

Contribution

Any contributions are highly appreciated. Here are some tips:

  • To improve the translation or add a new language, modify the lang directory. If adding a new language, you will also need to modify src/utils/i18n.ts.
  • To improve or add new preset prompts, modify the prompts directory.
  • To optimize the API, modify the src/pages/api directory.
  • To optimize page interactions, modify the src/components directory.
  • For new feature support, please open an issue directly.

Credits

License

Based on MIT License

About

Powered by OpenAI API GPT-4/3.5 and Vercel, support muti text conversations/prompts preset/image generation -- 支持多组文本对话/预设提示/图像生成,由 OpenAI API GPT-4/3.5 和 Vercel 提供支持

https://chatgpt-vercel-sample.vercel.app/

License:MIT License


Languages

Language:TypeScript 85.0%Language:Astro 12.8%Language:JavaScript 1.5%Language:CSS 0.7%