2022-12-17 17:51:05 +08:00
# QChatGPT🤖
2022-12-08 14:59:59 +08:00
2023-01-03 20:11:05 +08:00
- 到[项目Wiki](https://github.com/RockChinQ/QChatGPT/wiki)可了解项目详细信息
2023-01-04 10:10:23 +08:00
- 由bilibili TheLazy制作的[视频教程](https://www.bilibili.com/video/BV15v4y1X7aP)
2022-12-16 13:11:07 +08:00
- 测试号: 2196084348
2022-12-15 20:12:19 +08:00
- 交流、答疑群: 204785790
- **进群提问前请您`确保`已经找遍文档和issue均无法解决**
- **进群提问前请您`确保`已经找遍文档和issue均无法解决**
- **进群提问前请您`确保`已经找遍文档和issue均无法解决**
2022-12-15 13:58:59 +08:00
- QQ频道机器人见[QQChannelChatGPT](https://github.com/Soulter/QQChannelChatGPT)
2022-12-12 17:29:09 +08:00
2022-12-08 16:51:30 +08:00
通过调用OpenAI GPT-3模型提供的Completion API来实现一个更加智能的QQ机器人
2022-12-12 00:22:08 +08:00
2022-12-17 17:51:05 +08:00
## ✅功能
2022-12-15 20:47:38 +08:00
2023-01-02 14:24:26 +08:00
查看[Wiki功能使用页](https://github.com/RockChinQ/QChatGPT/wiki/%E5%8A%9F%E8%83%BD%E4%BD%BF%E7%94%A8#%E5%8A%9F%E8%83%BD%E7%82%B9%E5%88%97%E4%B8%BE)
2022-12-12 17:24:36 +08:00
2022-12-17 17:51:05 +08:00
## 🔩部署
2022-12-11 21:27:50 +08:00
2022-12-14 13:55:11 +08:00
**部署过程中遇到任何问题,请先在[QChatGPT](https://github.com/RockChinQ/QChatGPT/issues)或[qcg-installer](https://github.com/RockChinQ/qcg-installer/issues)的issue里进行搜索**
2023-01-02 14:52:20 +08:00
### - 注册OpenAI账号
2022-12-11 21:27:50 +08:00
2022-12-11 22:46:17 +08:00
参考以下文章
2022-12-11 21:27:50 +08:00
2022-12-11 22:46:17 +08:00
> [只需 1 元搞定 ChatGPT 注册](https://zhuanlan.zhihu.com/p/589470082)
> [手把手教你如何注册ChatGPT, 超级详细](https://guxiaobei.com/51461)
2022-12-08 14:59:59 +08:00
2022-12-11 22:46:17 +08:00
注册成功后请前往[个人中心查看](https://beta.openai.com/account/api-keys)api_key
2022-12-12 00:22:08 +08:00
完成注册后,使用以下自动化或手动部署步骤
2022-12-09 23:30:44 +08:00
2023-01-02 14:52:20 +08:00
### - 自动化部署
2022-12-08 14:59:59 +08:00
2023-01-03 13:12:50 +08:00
< details >
< summary > 展开查看, 以下方式二选一, Linux首选Docker, Windows首选安装器< / summary >
2022-12-15 23:35:20 +08:00
#### Docker方式
请查看此仓库[mikumifa/QChatGPT-Docker-Installer](https://github.com/mikumifa/QChatGPT-Docker-Installer)
#### 安装器方式
2022-12-14 11:01:32 +08:00
使用[此安装器](https://github.com/RockChinQ/qcg-installer)(若无法访问请到[Gitee](https://gitee.com/RockChin/qcg-installer))进行部署
2022-12-11 22:46:17 +08:00
2022-12-15 23:35:20 +08:00
- 安装器目前仅支持部分平台,请到仓库文档查看,其他平台请手动部署
2022-12-08 14:59:59 +08:00
2023-01-03 13:12:50 +08:00
< / details >
2023-01-02 14:52:20 +08:00
### - 手动部署
2022-12-11 22:46:17 +08:00
< details >
< summary > 手动部署适用于所有平台< / summary >
2022-12-08 14:59:59 +08:00
2022-12-11 22:46:17 +08:00
- 请使用Python 3.9.x以上版本
- 请注意OpenAI账号额度消耗
- 每个账户仅有18美元免费额度, 如未绑定银行卡, 则会在超出时报错
- OpenAI收费标准: 默认使用的`text-davinci-003`模型 0.02美元/千字
2022-12-08 14:59:59 +08:00
2022-12-11 22:46:17 +08:00
#### 配置Mirai
2022-12-08 14:59:59 +08:00
2022-12-11 15:07:45 +08:00
按照[此教程](https://yiri-mirai.wybxc.cc/tutorials/01/configuration)配置Mirai及YiriMirai
启动mirai-console后, 使用`login`命令登录QQ账号, 保持mirai-console运行状态
2022-12-08 14:59:59 +08:00
2022-12-11 22:46:17 +08:00
#### 配置主程序
2022-12-08 14:59:59 +08:00
1. 克隆此项目
```bash
git clone https://github.com/RockChinQ/QChatGPT
2022-12-11 18:13:45 +08:00
cd QChatGPT
2022-12-08 14:59:59 +08:00
```
2. 安装依赖
```bash
2023-01-01 20:29:33 +08:00
pip3 install yiri-mirai openai colorlog func_timeout
2023-01-01 21:02:37 +08:00
pip3 install dulwich
2022-12-08 14:59:59 +08:00
```
3. 运行一次主程序,生成配置文件
```bash
2022-12-09 23:30:44 +08:00
python3 main.py
2022-12-08 14:59:59 +08:00
```
4. 编辑配置文件`config.py`
按照文件内注释填写配置信息
2022-12-11 20:02:39 +08:00
5. 运行主程序
2022-12-08 14:59:59 +08:00
```bash
2022-12-09 23:30:44 +08:00
python3 main.py
2022-12-08 14:59:59 +08:00
```
2022-12-17 13:21:55 +08:00
无报错信息即为运行成功
**常见问题**
- mirai登录提示`QQ版本过低`,见[此issue](https://github.com/RockChinQ/QChatGPT/issues/38)
2022-12-11 18:13:45 +08:00
- 如提示安装`uvicorn`或`hypercorn`请*不要*安装, 这两个不是必需的, 目前存在未知原因bug
2022-12-10 17:54:35 +08:00
- 如报错`TypeError: As of 3.10, the *loop* parameter was removed from Lock() since it is no longer necessary`, 请参考 [此处 ](https://github.com/RockChinQ/QChatGPT/issues/5 )
2022-12-08 15:02:31 +08:00
2022-12-11 22:46:17 +08:00
< / details >
2022-12-17 17:51:05 +08:00
## 🚀使用
2022-12-08 15:02:31 +08:00
2023-01-02 14:49:43 +08:00
查看[Wiki功能使用页](https://github.com/RockChinQ/QChatGPT/wiki/%E5%8A%9F%E8%83%BD%E4%BD%BF%E7%94%A8#%E4%BD%BF%E7%94%A8%E6%96%B9%E5%BC%8F)
2023-01-04 22:00:31 +08:00
## 👍赞赏
< img alt = "赞赏码" src = "res/mm_reward_qrcode_1672840549070.png" width = "400" height = "400" / >