- 2023.3.6 作者删除了浏览器模拟登录版本,
后续也把官方endpoint公开了(改回去了,据说是有人反馈直连速度变慢),故将主分支做一次大更新(由于“被迫”安装了无用的依赖,此主分支的镜像体积比proxy分支约大10倍,但是相比有bug被修复,镜像大点倒也无所谓了) - 2023.3.3 现支持按回车发送问题请求,按shift+回车可换行输入文本
- 2023.2.28 关于OPENAI允许问题的最大长度
- 2023.2.20
支持markdown语法
- 2023.2.19
重构关键代码,内置本人使用的UI,支持查看连续对话记录
使用acheong08对接官方ChatGPT接口,实现简单HTML网页版在线聊天
该版本基于
ChatGPT
网页端代理开发(免费),想使用ChatGPT API KEY(付费)的请访问chatgpt-web
- 点击注册OpenAI
以下所有文件放同一目录
- 新建
config.json
文件,粘贴以下代码并保存
{
//邮箱、session_token和access_token三选一,不用的注释或删掉,注意最后一行删掉逗号
//邮箱认证
"email": "填写你的OpenAI账号(即邮箱)",
"password": "填写你的OpenAI密码"
//session_token认证
"session_token": "..."
//access_token认证
"access_token": "<access_token>"
//以下为选填字段
//通过代理连接代理端(作者服务器被墙过,代理好像只能用无密码认证的socks5或者http,请自行测试)
//# "proxy": "..."
//使用付费openai账号(官方称速度更快,无频率限制)
//# "paid": true
}
- session_token获取方法(随时过期)
- Go to https://chat.openai.com/chat and open the developer tools by
F12
. - Find the
__Secure-next-auth.session-token
cookie inApplication
>Storage
>Cookies
>https://chat.openai.com
. - Copy the value in the
Cookie Value
field.
- access_token获取方法(据说可以持续2周不过期)
登录ChatGPT官方网页版后再打开https://chat.openai.com/api/auth/session
- 新建
docker-compose.yml
配置文件,粘贴以下内容并保存
services:
chatgpt:
image: sheepgreen/chatgpt-html #如果是arm架构,请换成chatgpt-html:arm
container_name: htmchat
volumes:
- ./config.json:/chatgpt-html/config.json
# - ./chat.html:/chatgpt-html/templates/chat.html #默认内置我的UI,如需替换自用网页请取消注释
ports:
- "9999:8088" #8088为容器内端口,不可更换;9999为外部端口,可自行更换
restart: always
- 输入
docker-compose up -d
即启动成功
- 访问地址为http://ip:port
- 修改
chat.html
文件后,需要docker restart htmchat才能生效