2023-02-13 08:07:34 -05:00
# ChatGPT Web
2023-02-13 06:30:26 -05:00
2023-12-03 05:27:38 -05:00
> Disclaimer: This project is only published on GitHub, based on the MIT license, free and for open source learning usage. And there will be no any form of account selling, paid service, discussion group, discussion group and other behaviors. Beware of being deceived.
[中文 ](README.zh.md )
2023-02-09 02:48:27 -05:00
2023-03-03 20:34:28 -05:00
![cover ](./docs/c1.png )
![cover2 ](./docs/c2.png )
2023-02-09 02:48:27 -05:00
2023-02-22 01:43:55 -05:00
- [ChatGPT Web ](#chatgpt-web )
2024-03-11 00:00:53 -04:00
- [Introduction ](#introduction )
- [Roadmap ](#roadmap )
- [Prerequisites ](#prerequisites )
- [Node ](#node )
- [PNPM ](#pnpm )
- [Filling in the Key ](#filling-in-the-key )
- [Install Dependencies ](#install-dependencies )
- [Backend ](#backend )
- [Frontend ](#frontend )
- [Run in Test Environment ](#run-in-test-environment )
- [Backend Service ](#backend-service )
- [Frontend Webpage ](#frontend-webpage )
- [Environment Variables ](#environment-variables )
- [Packaging ](#packaging )
- [Use Docker ](#use-docker )
- [Docker Parameter Examples ](#docker-parameter-examples )
- [Docker build \& Run ](#docker-build--run )
- [Docker compose ](#docker-compose )
- [Prevent Crawlers ](#prevent-crawlers )
- [Deploy with Railway ](#deploy-with-railway )
- [Railway Environment Variables ](#railway-environment-variables )
- [Deploy with Sealos ](#deploy-with-sealos )
- [Package Manually ](#package-manually )
- [Backend Service ](#backend-service-1 )
- [Frontend Webpage ](#frontend-webpage-1 )
- [FAQ ](#faq )
- [Contributing ](#contributing )
- [Acknowledgements ](#acknowledgements )
- [Sponsors ](#sponsors )
- [License ](#license )
2023-12-03 05:27:38 -05:00
## Introduction
Supports dual models and provides two unofficial `ChatGPT API` methods
| Method | Free? | Reliability | Quality |
| ---------------------------------- | ----- | ----------- | ------- |
| `ChatGPTAPI(gpt-3.5-turbo-0301)` | No | Reliable | Relatively stupid |
| `ChatGPTUnofficialProxyAPI(web accessToken)` | Yes | Relatively unreliable | Smart |
Comparison:
1. `ChatGPTAPI` uses `gpt-3.5-turbo` through `OpenAI` official `API` to call `ChatGPT`
2. `ChatGPTUnofficialProxyAPI` uses unofficial proxy server to access `ChatGPT` 's backend `API` , bypass `Cloudflare` (dependent on third-party servers, and has rate limits)
Warnings:
1. You should first use the `API` method
2. When using the `API` , if the network is not working, it is blocked in China, you need to build your own proxy, never use someone else's public proxy, which is dangerous.
3. When using the `accessToken` method, the reverse proxy will expose your access token to third parties. This should not have any adverse effects, but please consider the risks before using this method.
4. When using `accessToken` , whether you are a domestic or foreign machine, proxies will be used. The default proxy is [pengzhile ](https://github.com/pengzhile )'s `https://ai.fakeopen.com/api/conversation` . This is not a backdoor or monitoring unless you have the ability to flip over `CF` verification yourself. Use beforehand acknowledge. [Community Proxy ](https://github.com/transitive-bullshit/chatgpt-api#reverse-proxy ) (Note: Only these two are recommended, other third-party sources, please identify for yourself)
5. When publishing the project to public network, you should set the `AUTH_SECRET_KEY` variable to add your password access, you should also modify the `title` in `index. html` to prevent it from being searched by keywords.
Switching methods:
1. Enter the `service/.env.example` file, copy the contents to the `service/.env` file
2. To use `OpenAI API Key` , fill in the `OPENAI_API_KEY` field [(get apiKey) ](https://platform.openai.com/overview )
3. To use `Web API` , fill in the `OPENAI_ACCESS_TOKEN` field [(get accessToken) ](https://chat.openai.com/api/auth/session )
4. `OpenAI API Key` takes precedence when both exist
Environment variables:
See all parameter variables [here ](#environment-variables )
## Roadmap
[✓] Dual models
[✓] Multi-session storage and context logic
[✓] Formatting and beautification of code and other message types
[✓] Access control
[✓] Data import/export
[✓] Save messages as local images
[✓] Multilingual interface
[✓] Interface themes
2023-02-13 03:29:51 -05:00
2023-02-15 02:53:53 -05:00
[✗] More...
2023-02-13 03:29:51 -05:00
2023-12-03 05:27:38 -05:00
## Prerequisites
2023-02-13 03:29:51 -05:00
### Node
2023-12-03 05:27:38 -05:00
`node` requires version `^16 || ^18 || ^19` (`node >= 14` needs [fetch polyfill ](https://github.com/developit/unfetch#usage-as-a-polyfill ) installation), use [nvm ](https://github.com/nvm-sh/nvm ) to manage multiple local `node` versions
2023-02-13 03:29:51 -05:00
```shell
node -v
```
### PNPM
2023-12-03 05:27:38 -05:00
If you haven't installed `pnpm`
2023-02-09 03:48:21 -05:00
```shell
npm install pnpm -g
```
2023-12-03 05:27:38 -05:00
### Filling in the Key
Get `Openai Api Key` or `accessToken` and fill in the local environment variables [Go to Introduction ](#introduction )
2023-02-21 02:26:23 -05:00
2023-02-13 03:29:51 -05:00
```
2023-12-03 05:27:38 -05:00
# service/.env file
2023-02-13 03:29:51 -05:00
2023-02-21 02:26:23 -05:00
# OpenAI API Key - https://platform.openai.com/overview
OPENAI_API_KEY=
# change this to an `accessToken` extracted from the ChatGPT site's `https://chat.openai.com/api/auth/session` response
OPENAI_ACCESS_TOKEN=
2023-02-13 03:29:51 -05:00
```
2023-12-03 05:27:38 -05:00
## Install Dependencies
2023-02-13 03:29:51 -05:00
2023-12-03 05:27:38 -05:00
> For the convenience of "backend developers" to understand the burden, the front-end "workspace" mode is not adopted, but separate folders are used to store them. If you only need to do secondary development of the front-end page, delete the `service` folder.
2023-02-13 03:29:51 -05:00
2023-12-03 05:27:38 -05:00
### Backend
2023-02-13 03:29:51 -05:00
2023-12-03 05:27:38 -05:00
Enter the folder `/service` and run the following commands
2023-02-13 03:29:51 -05:00
2023-02-09 02:57:39 -05:00
```shell
pnpm install
```
2023-12-03 05:27:38 -05:00
### Frontend
Run the following commands at the root directory
2023-02-13 03:29:51 -05:00
```shell
pnpm bootstrap
2023-02-09 02:57:39 -05:00
```
2023-02-13 03:29:51 -05:00
2023-12-03 05:27:38 -05:00
## Run in Test Environment
### Backend Service
2023-02-13 03:29:51 -05:00
2023-12-03 05:27:38 -05:00
Enter the folder `/service` and run the following commands
2023-02-13 03:29:51 -05:00
```shell
pnpm start
2023-02-09 02:57:39 -05:00
```
2023-12-03 05:27:38 -05:00
### Frontend Webpage
Run the following commands at the root directory
2023-02-09 02:48:27 -05:00
```shell
2023-02-13 03:29:51 -05:00
pnpm dev
2023-02-09 02:57:39 -05:00
```
2023-02-09 02:48:27 -05:00
2023-12-03 05:27:38 -05:00
## Environment Variables
2023-02-16 00:39:07 -05:00
2023-12-03 05:27:38 -05:00
`API` available:
2023-02-21 02:26:23 -05:00
2023-12-03 05:27:38 -05:00
- `OPENAI_API_KEY` and `OPENAI_ACCESS_TOKEN` choose one
- `OPENAI_API_MODEL` Set model, optional, default: `gpt-3.5-turbo`
- `OPENAI_API_BASE_URL` Set interface address, optional, default: `https://api.openai.com`
- `OPENAI_API_DISABLE_DEBUG` Set interface to close debug logs, optional, default: empty does not close
2023-03-12 20:44:53 -04:00
2023-12-03 05:27:38 -05:00
`ACCESS_TOKEN` available:
2023-03-12 20:44:53 -04:00
2023-12-03 05:27:38 -05:00
- `OPENAI_ACCESS_TOKEN` and `OPENAI_API_KEY` choose one, `OPENAI_API_KEY` takes precedence when both exist
- `API_REVERSE_PROXY` Set reverse proxy, optional, default: `https://ai.fakeopen.com/api/conversation` , [Community ](https://github.com/transitive-bullshit/chatgpt-api#reverse-proxy ) (Note: Only these two are recommended, other third party sources, please identify for yourself)
2023-03-12 20:44:53 -04:00
2023-12-03 05:27:38 -05:00
Common:
2023-02-21 02:26:23 -05:00
2023-12-03 05:27:38 -05:00
- `AUTH_SECRET_KEY` Access permission key, optional
- `MAX_REQUEST_PER_HOUR` Maximum number of requests per hour, optional, unlimited by default
- `TIMEOUT_MS` Timeout, unit milliseconds, optional
- `SOCKS_PROXY_HOST` and `SOCKS_PROXY_PORT` take effect together, optional
- `SOCKS_PROXY_PORT` and `SOCKS_PROXY_HOST` take effect together, optional
- `HTTPS_PROXY` Support `http` , `https` , `socks5` , optional
- `ALL_PROXY` Support `http` , `https` , `socks5` , optional
2023-03-12 20:44:53 -04:00
2023-12-03 05:27:38 -05:00
## Packaging
2023-03-12 20:44:53 -04:00
2023-12-03 05:27:38 -05:00
### Use Docker
2023-03-12 20:44:53 -04:00
2023-12-03 05:27:38 -05:00
#### Docker Parameter Examples
2023-02-21 02:26:23 -05:00
![docker ](./docs/docker.png )
2023-02-21 21:40:26 -05:00
#### Docker build & Run
2023-02-16 00:42:19 -05:00
2023-02-16 07:29:46 -05:00
```bash
docker build -t chatgpt-web .
2023-02-20 20:32:09 -05:00
2023-12-03 05:27:38 -05:00
# Foreground running
2023-03-23 01:56:52 -04:00
docker run --name chatgpt-web --rm -it -p 127.0.0.1:3002:3002 --env OPENAI_API_KEY=your_api_key chatgpt-web
2023-02-20 20:32:09 -05:00
2023-12-03 05:27:38 -05:00
# Background running
2023-03-23 01:56:52 -04:00
docker run --name chatgpt-web -d -p 127.0.0.1:3002:3002 --env OPENAI_API_KEY=your_api_key chatgpt-web
2023-02-20 20:32:09 -05:00
2023-12-03 05:27:38 -05:00
# Run address
2023-02-20 20:32:09 -05:00
http://localhost:3002/
2023-02-16 00:39:07 -05:00
```
2023-02-21 21:40:26 -05:00
#### Docker compose
2023-02-16 07:25:29 -05:00
2023-12-03 05:27:38 -05:00
[Hub address ](https://hub.docker.com/repository/docker/chenzhaoyu94/chatgpt-web/general )
2023-02-16 08:03:12 -05:00
2023-02-16 07:25:29 -05:00
```yml
version: '3'
2023-02-16 21:57:06 -05:00
services:
2023-02-16 07:25:29 -05:00
app:
2023-12-03 05:27:38 -05:00
image: chenzhaoyu94/chatgpt-web # always use latest, pull the tag image again to update
2023-02-16 07:25:29 -05:00
ports:
2023-03-23 01:56:52 -04:00
- 127.0.0.1:3002:3002
2023-02-16 07:25:29 -05:00
environment:
2023-12-03 05:27:38 -05:00
# choose one
2023-03-16 20:59:49 -04:00
OPENAI_API_KEY: sk-xxx
2023-12-03 05:27:38 -05:00
# choose one
2023-03-16 20:59:49 -04:00
OPENAI_ACCESS_TOKEN: xxx
2023-12-03 05:27:38 -05:00
# API interface address, optional, available when OPENAI_API_KEY is set
2023-03-16 20:59:49 -04:00
OPENAI_API_BASE_URL: xxx
2023-12-03 05:27:38 -05:00
# API model, optional, available when OPENAI_API_KEY is set, https://platform.openai.com/docs/models
2024-04-16 02:59:51 -04:00
# gpt-4, gpt-4-turbo, gpt-4-turbo-preview, gpt-4-0125-preview, gpt-4-1106-preview, gpt-4-0314, gpt-4-0613, gpt-4-32k, gpt-4-32k-0314, gpt-4-32k-0613, gpt-3.5-turbo-16k, gpt-3.5-turbo-16k-0613, gpt-3.5-turbo, gpt-3.5-turbo-0301, gpt-3.5-turbo-0613, text-davinci-003, text-davinci-002, code-davinci-002
2023-03-16 20:59:49 -04:00
OPENAI_API_MODEL: xxx
2023-12-03 05:27:38 -05:00
# reverse proxy, optional
2023-02-21 02:26:23 -05:00
API_REVERSE_PROXY: xxx
2023-12-03 05:27:38 -05:00
# access permission key, optional
2023-03-07 09:12:15 -05:00
AUTH_SECRET_KEY: xxx
2023-12-03 05:27:38 -05:00
# maximum number of requests per hour, optional, unlimited by default
2023-03-20 21:20:27 -04:00
MAX_REQUEST_PER_HOUR: 0
2023-12-03 05:27:38 -05:00
# timeout, unit milliseconds, optional
2023-02-21 02:26:23 -05:00
TIMEOUT_MS: 60000
2023-12-03 05:27:38 -05:00
# Socks proxy, optional, take effect with SOCKS_PROXY_PORT
2023-03-16 20:59:49 -04:00
SOCKS_PROXY_HOST: xxx
2023-12-03 05:27:38 -05:00
# Socks proxy port, optional, take effect with SOCKS_PROXY_HOST
2023-03-16 20:59:49 -04:00
SOCKS_PROXY_PORT: xxx
2023-12-03 05:27:38 -05:00
# HTTPS proxy, optional, support http,https,socks5
2023-03-16 20:59:49 -04:00
HTTPS_PROXY: http://xxx:7890
2023-02-16 07:25:29 -05:00
```
2023-04-24 08:08:30 -04:00
2023-12-03 05:27:38 -05:00
- `OPENAI_API_BASE_URL` Optional, available when `OPENAI_API_KEY` is set
- `OPENAI_API_MODEL` Optional, available when `OPENAI_API_KEY` is set
#### Prevent Crawlers
2023-04-24 08:08:30 -04:00
**nginx**
2023-12-03 05:27:38 -05:00
Fill in the following configuration in the nginx configuration file to prevent crawlers. You can refer to the `docker-compose/nginx/nginx.conf` file to add anti-crawler methods
2023-04-24 08:08:30 -04:00
```
2023-12-03 05:27:38 -05:00
# Prevent crawlers
2023-04-24 08:08:30 -04:00
if ($http_user_agent ~* "360Spider|JikeSpider|Spider|spider|bot|Bot|2345Explorer|curl|wget|webZIP|qihoobot|Baiduspider|Googlebot|Googlebot-Mobile|Googlebot-Image|Mediapartners-Google|Adsbot-Google|Feedfetcher-Google|Yahoo! Slurp|Yahoo! Slurp China|YoudaoBot|Sosospider|Sogou spider|Sogou web spider|MSNBot|ia_archiver|Tomato Bot|NSPlayer|bingbot")
{
return 403;
}
```
2023-12-03 05:27:38 -05:00
### Deploy with Railway
2023-02-21 21:40:26 -05:00
[![Deploy on Railway ](https://railway.app/button.svg )](https://railway.app/new/template/yytmgc)
2023-12-03 05:27:38 -05:00
#### Railway Environment Variables
2023-02-21 21:40:26 -05:00
2023-12-03 05:27:38 -05:00
| Environment variable name | Required | Remarks |
2023-03-02 22:59:16 -05:00
| --------------------- | ---------------------- | -------------------------------------------------------------------------------------------------- |
2023-12-03 05:27:38 -05:00
| `PORT` | Required | Default `3002` |
| `AUTH_SECRET_KEY` | Optional | Access permission key |
| `MAX_REQUEST_PER_HOUR` | Optional | Maximum number of requests per hour, optional, unlimited by default |
| `TIMEOUT_MS` | Optional | Timeout, unit milliseconds |
| `OPENAI_API_KEY` | `OpenAI API` choose one | `apiKey` required for `OpenAI API` [(get apiKey) ](https://platform.openai.com/overview ) |
| `OPENAI_ACCESS_TOKEN` | `Web API` choose one | `accessToken` required for `Web API` [(get accessToken) ](https://chat.openai.com/api/auth/session ) |
| `OPENAI_API_BASE_URL` | Optional, available when `OpenAI API` | `API` interface address |
| `OPENAI_API_MODEL` | Optional, available when `OpenAI API` | `API` model |
| `API_REVERSE_PROXY` | Optional, available when `Web API` | `Web API` reverse proxy address [Details ](https://github.com/transitive-bullshit/chatgpt-api#reverse-proxy ) |
| `SOCKS_PROXY_HOST` | Optional, take effect with `SOCKS_PROXY_PORT` | Socks proxy |
| `SOCKS_PROXY_PORT` | Optional, take effect with `SOCKS_PROXY_HOST` | Socks proxy port |
| `SOCKS_PROXY_USERNAME` | Optional, take effect with `SOCKS_PROXY_HOST` | Socks proxy username |
| `SOCKS_PROXY_PASSWORD` | Optional, take effect with `SOCKS_PROXY_HOST` | Socks proxy password |
| `HTTPS_PROXY` | Optional | HTTPS proxy, support http,https, socks5 |
| `ALL_PROXY` | Optional | All proxies, support http,https, socks5 |
> Note: Modifying environment variables on `Railway` will re-`Deploy`
### Deploy with Sealos
2023-08-08 23:45:11 -04:00
[![ ](https://raw.githubusercontent.com/labring-actions/templates/main/Deploy-on-Sealos.svg )](https://cloud.sealos.io/?openapp=system-fastdeploy%3FtemplateName%3Dchatgpt-web)
2023-12-03 05:27:38 -05:00
> Environment variables are consistent with Docker environment variables
2023-08-08 23:45:11 -04:00
2023-12-03 05:27:38 -05:00
### Package Manually
#### Backend Service
> If you don't need the `node` interface of this project, you can omit the following operations
2023-02-16 07:29:46 -05:00
2023-12-03 05:27:38 -05:00
Copy the `service` folder to the server where you have the `node` service environment.
2023-02-17 20:59:39 -05:00
```shell
2023-12-03 05:27:38 -05:00
# Install
2023-02-17 20:59:39 -05:00
pnpm install
2023-12-03 05:27:38 -05:00
# Pack
2023-02-17 20:59:39 -05:00
pnpm build
2023-12-03 05:27:38 -05:00
# Run
2023-02-17 20:59:39 -05:00
pnpm prod
```
2023-12-03 05:27:38 -05:00
PS: It is also okay to run `pnpm start` directly on the server without packing
2023-02-17 20:59:39 -05:00
2023-12-03 05:27:38 -05:00
#### Frontend Webpage
2023-02-16 00:42:19 -05:00
2023-12-03 05:27:38 -05:00
1. Modify the `VITE_GLOB_API_URL` field in the `.env` file at the root directory to your actual backend interface address
2023-02-20 20:32:09 -05:00
2023-12-03 05:27:38 -05:00
2. Run the following commands at the root directory, then copy the files in the `dist` folder to the root directory of your website service
2023-02-13 03:29:51 -05:00
2023-12-03 05:27:38 -05:00
[Reference ](https://cn.vitejs.dev/guide/static -deploy.html#building-the-app )
2023-02-16 00:42:19 -05:00
2023-02-09 02:57:39 -05:00
```shell
2023-02-13 03:29:51 -05:00
pnpm build
2023-02-09 02:48:27 -05:00
```
2023-12-03 05:27:38 -05:00
## FAQ
Q: Why does `Git` commit always report errors?
2023-02-13 06:09:34 -05:00
2023-12-03 05:27:38 -05:00
A: Because there is a commit message verification, please follow the [Commit Guide ](./CONTRIBUTING.md )
2023-02-13 06:09:34 -05:00
2023-12-03 05:27:38 -05:00
Q: Where to change the request interface if only the front-end page is used?
2023-02-13 03:29:51 -05:00
2023-12-03 05:27:38 -05:00
A: The `VITE_GLOB_API_URL` field in the `.env` file at the root directory.
2023-02-13 03:29:51 -05:00
2023-12-03 05:27:38 -05:00
Q: All files explode red when saving?
2023-02-13 03:29:51 -05:00
2023-12-03 05:27:38 -05:00
A: `vscode` please install the recommended plug-ins for the project, or manually install the `Eslint` plug-in.
2023-02-13 03:29:51 -05:00
2023-12-03 05:27:38 -05:00
Q: No typewriter effect on the front end?
2023-03-04 06:24:56 -05:00
2023-12-03 05:27:38 -05:00
A: One possible reason is that after Nginx reverse proxy, buffer is turned on, then Nginx will try to buffer some data from the backend before sending it to the browser. Please try adding `proxy_buffering off; ` after the reverse proxy parameter, then reload Nginx. Other web server configurations are similar.
2023-03-04 06:24:56 -05:00
2023-12-03 05:27:38 -05:00
## Contributing
2023-02-16 01:17:03 -05:00
2023-12-03 05:27:38 -05:00
Please read the [Contributing Guide ](./CONTRIBUTING.md ) before contributing
2023-02-16 01:17:03 -05:00
2023-12-03 05:27:38 -05:00
Thanks to everyone who has contributed!
2023-02-16 01:17:03 -05:00
< a href = "https://github.com/Chanzhaoyu/chatgpt-web/graphs/contributors" >
< img src = "https://contrib.rocks/image?repo=Chanzhaoyu/chatgpt-web" / >
< / a >
2024-03-11 00:00:53 -04:00
## Acknowledgements
Thanks to [JetBrains ](https://www.jetbrains.com/ ) SoftWare for providing free Open Source license for this project.
2023-12-03 05:27:38 -05:00
## Sponsors
2023-02-26 22:14:32 -05:00
2023-12-03 05:27:38 -05:00
If you find this project helpful and can afford it, you can give me a little support. Anyway, thanks for your support~
2023-02-26 22:14:32 -05:00
< div style = "display: flex; gap: 20px;" >
< div style = "text-align: center" >
2023-12-03 05:27:38 -05:00
< img style = "max-width: 100%" src = "./docs/wechat.png" alt = "WeChat" / >
2023-02-26 22:14:32 -05:00
< p > WeChat Pay< / p >
< / div >
< div style = "text-align: center" >
2023-12-03 05:27:38 -05:00
< img style = "max-width: 100%" src = "./docs/alipay.png" alt = "Alipay" / >
2023-02-26 22:14:32 -05:00
< p > Alipay< / p >
< / div >
< / div >
2023-02-09 02:48:27 -05:00
## License
2024-03-11 00:00:53 -04:00
MIT © [ChenZhaoYu]