mirror of
https://github.com/ikechan8370/chatgpt-plugin.git
synced 2025-12-16 13:27:08 +00:00
云崽系机器人的智能聊天插件
https://www.yunzai.chat/
| index.js | ||
| LICENSE | ||
| README.md | ||
yunzai-chatgpt
云崽qq机器人的chatgpt插件
安装
进入yunzai根目录
- 安装依赖
pnpm install -w chatgpt undici
- 克隆项目
git clone https://github.com/ikechan8370/yunzai-chatgpt.git ./plugins/chatgpt
- 修改配置
编辑
plugins/chatgpt/index.js文件主要修改其中的SESSION_TOKEN常量,修改为你的openai账号的token。
关于openai token获取
- 注册openai账号 进入https://chat.openai.com/,选择signup注册。目前openai不对包括俄罗斯、乌克兰、伊朗、中国等国家和地区提供服务,所以自行寻找办法使用其他国家和地区的ip登录。此外,注册可能需要验证所在国家和地区的手机号码,如果没有国外手机号可以试试解码网站,收费的推荐https://sms-activate.org/。
- 获取token
注册并登录后进入https://chat.openai.com/chat,打开浏览器检查界面(按F12),找到图中所示的token值完整复制即可。

其他问题可以参考使用的api库https://github.com/transitive-bullshit/chatgpt-api
其他
index.js文件第35行中,
const api = new ChatGPTAPI({ sessionToken: SESSION_TOKEN, markdown: false })
默认关闭了markdown支持,如果发现代码类回答显示有问题可以将其改为true试试。