服务器部署chatgpt-web
服务器部署chatgpt-web
github地址
https://github.com/Yidadaa/ChatGPT-Next-Web
docker容器部署
获取镜像
docker pull yidadaa/chatgpt-next-web
启动镜像,需要设置openai的key,页面访问密码和代理端口
docker run -d -p 3000:3000 \
-e OPENAI_API_KEY="sk-xxxx" \
-e CODE="页面访问密码" \
--net=host \
-e PROXY_URL="http://127.0.0.1:7890" \
yidadaa/chatgpt-next-web
api文档
https://platform.openai.com/docs/api-reference
API keys
https://platform.openai.com/account/api-keys
服务器放行3000端口
服务器部署chatgpt-web
http://example.com/2023/06/08/chatgpt-web/