此程序支持对接chatgpt3.5-4.*的所有接口。程序使用nodejs+react开发,好看速度快。
https://pan.quark.cn/s/f844cccf50f0
压缩包内包含了 3 个文件,分别是:安装视频,安装手册和源码。如果你安装好访问后台提示 404 等错误,应该是伪静态没有配置,nginx 伪静态规则为:
location / {
try_files $uri $uri/ @router;
index index.html;
}
location @router{
rewrite ^.*$ /index.html last;
}