- 2023.2.20
支持markdown语法
- 2023.2.19
重构关键代码,内置本人使用的UI,支持查看对话记录
感谢某爱心人士捐助,https://gpt.sheepig.top/chat 已恢复使用再次被干爆,没次数了,请访问https://chat.sheepig.top 使用真ChatGPT版本
使用GPT-3.5中的text-davinci-003模型,利用OpenAI API实现简单HTML网页版在线聊天(基于此项目调整而来)
该版本基于OPENAI API KEY开发,想使用
ChatGPT
的请访问chatgpt-html
- 在OpenAI官方网页中,我们可以看到官方对ChatGPT的描述为“ChatGPT is fine-tuned from a model in the GPT-3.5 series, which finished training in early 2022. You can learn more about the 3.5 series here. ChatGPT and GPT 3.5 were trained on an Azure AI supercomputing infrastructure”,从而得知ChatGPT与GPT-3.5是两个不同产品
- 官方对GPT-3.5系列的介绍里,
text-davinci-003
是其中的模型之一 - 我们再查阅官方对OpenAI API KEY的介绍,其中有一句“The API is powered by a set of models with different capabilities and price points. Our base GPT-3 models are called Davinci, Curie, Babbage and Ada”,davinci赫然在列
- 事实上,ChatGPT最近发生过登录认证风波,想了解详细过程的可以查看这个issue
- 如果你自己有分别使用过ChatGPT的官方chat和OpenAI的API接口chat,你会发现API接口chat比ChatGPT的官方chat“笨”得多
- 建议参考此教程获取
- 请参考原作者github
- 新建
docker-compose.yml
配置文件,粘贴以下内容并保存
services:
chatgpt:
image: sheepgreen/chatgpt-web #如果是arm架构,需要改成chatgpt-web:arm
container_name: webchat
environment:
- OPENAI_API_KEY=前面你获取到的OpenAI API KEY
# volumes:
# - ./chat.html:/chatgpt-web/templates/chat.html #默认内置我的UI,如需替换自用网页请取消注释
ports:
- "8888:8088" #8088为容器内部端口,不可更改;8888为外部映射端口,可自行更改
restart: always
- 输入
docker-compose up -d
即启动成功
- 访问地址为http://ip:port/chat