当前位置:   article > 正文

【本地运行chatgpt-web】启动前端项目和service服务端项目,也是使用nodejs进行开发的。两个都运行成功才可以使用!

【本地运行chatgpt-web】启动前端项目和service服务端项目,也是使用nodejs进行开发的。两个都运行成功才可以使用!

1,启动web界面

https://github.com/Chanzhaoyu/chatgpt-web#node

https://nodejs.org/en/download/package-manager
在这里插入图片描述

# 使用nvm 安装最新的 20 版本。
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash
source /root/.bashrc
nvm install 20

git clone https://github.com/Chanzhaoyu/chatgpt-web.git
cd chatgpt-web
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

安装依赖,启动web

npm install --registry=https://registry.npmmirror.com

# 启动 web 服务,设置端口 8080
npm run dev -- --port 8080

  • 1
  • 2
  • 3
  • 4
  • 5

img
``

2,启动serve服务

cd service
npm install --registry=https://registry.npmmirror.com

export OPENAI_API_KEY=1234
export OPENAI_API_MODEL=gpt-3.5-turbo
export OPENAI_API_BASE_URL=http://0.0.0.0:9997/v1

npm run dev

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/672305
推荐阅读
相关标签
  

闽ICP备14008679号