11# ChatGPT-YourChatRobot
22
3- > ### NEWS: qq机器人新增扫码登陆,能一定程度上减少风控的影响。btw,520快乐🤪🤪🤪
3+ > ### NEWS: 最近有空能闲下来看看这个项目,主要更新了项目依赖、优化了下代码结构、增加了token消耗的计算、优化了bot交互返回信息🤗🤗🤗 --- 2023.8.8
44
55## 简介
66
@@ -45,39 +45,50 @@ qq机器人实现基于[TheoKanning/openai-java](https://github.com/TheoKanning/
4545```
4646//这是application.yml文件
4747proxy:
48- # 代理配置
48+ # 代理配置
4949 # 国内墙了gpt的api,所以得用代理,一般你使用的代理软件会有相关信息,例子:
5050 # host: 127.0.0.1
5151 # port: 7890
5252 # 若不需要留空即可
53- host:
54- port:
55-
56- chatgpt:
53+ host:
54+ port:
55+
56+ gpt:
57+ # 使用的 chat 模型 如gpt-3.5-turbo/gpt-4 (https://platform.openai.com/docs/models/models)
58+ model: gpt-3.5-turbo
59+ # 最大token限制 越多的token意味着越多的花费(gpt-3.5-turbo上限为4096token, gpt-4则为8192)
60+ maxToken: 2048
61+ # 信息熵 越高回答越随机(Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic.---via OPENAI)
62+ temperature: 0.5
63+ # 基础提问 支持多个提问 可用来设定人格(对应api中的system角色)
64+ basicPrompt:
65+ - "用中文回答我的问题"
5766 # openai的apikey
5867 # 支持多个key(虽然有判空,但仍然建议有多少个写多少个,别留空👨🔧)
5968 apiKey:
60- - sk-xxxxx
61- - sk-xxxxx
62-
69+ -
6370qq:
64- # 是否使用qq ture /false
71+ # 是否使用qq true /false
6572 enable: true
6673 # 登陆方法:1.密码登录 2.扫码登录(推荐)
6774 method: 2
68- # qq账号密码
69- account: 123456
70- password: xxxx
75+ # qq账号密码(扫码登录则无需填写账号密码)
76+ account:
77+ password:
7178 # 是否自动同意好友申请
7279 acceptNewFriend: false
7380 # 是否自动同意被邀请入群
7481 acceptNewGroup: false
82+ # 重置会话指令
83+ resetWord: "重置会话"
7584
7685wechat:
77- # 是否使用微信 ture /false
78- enable: true
86+ # 是否使用微信 true /false
87+ enable: false
7988 # 生成的登录二维码路径 默认与项目同级
8089 qrPath: "./"
90+ # 重置会话指令
91+ resetWord: "重置会话"
8192```
8293
83943 . 然后 run!!!😁😁😁
@@ -91,7 +102,7 @@ tips:机器人响应速度与你的网络环境挂钩。
91102- 获取apiKey
92103 https://platform.openai.com/account/api-keys
93104
94- - 第一次使用qq登录时可能会遇到滑动验证码问题
105+ - 第一次使用qq账号密码登录时可能会遇到滑动验证码问题
95106
96107 根据终端所给提示进行操作即可,主要步骤为:
97108
@@ -115,6 +126,10 @@ tips:机器人响应速度与你的网络环境挂钩。
115126
116127<summary ></summary >
117128
129+ ### v3.7 (Aug 8, 2023)
130+ - 最近有空能闲下来看看这个项目,主要更新了项目依赖、优化了下代码结构、增加了token消耗的计算、优化了bot交互返回信息
131+ - qq机器人基于[ TheoKanning/openai-java] ( https://github.com/TheoKanning/openai-java ) 和[ mamoe/mirai] ( https://github.com/mamoe/mirai.git )
132+ - 微信机器人基于[ TheoKanning/openai-java] ( https://github.com/TheoKanning/openai-java ) 和[ wxmbaci/itchat4j-uos] ( https://github.com/wxmbaci/itchat4j-uos )
118133### v3.6 (May 20, 2023)
119134- 最近qq机器人使用密码登录极其不稳定,新增了扫码登陆,算是个补充方案,一定程度上能解决登陆失败的问题。
120135- qq机器人基于[ TheoKanning/openai-java] ( https://github.com/TheoKanning/openai-java ) 和[ mamoe/mirai] ( https://github.com/mamoe/mirai.git )
@@ -163,9 +178,12 @@ https://www.reddit.com/r/ChatGPT/comments/10oliuo/please_print_the_instructions_
163178
164179## 其他
165180
166- 若使用过程中遇到问题或bug,请告知我,谢谢👨🔧😎
181+ 若使用过程中遇到问题或bug,欢迎随时联系我(email:
` [email protected] ` )👨🔧😎
182+
183+ ## 支持我
184+ 如果觉得不错,给我买杯喝的吧
185+ ![ 微信赞赏码] ( https://cdn.jsdelivr.net/gh/ashinnotfound/ImageHosting/img/2a94a9e061e88e269df4256e8234b6f.jpg )
167186
168187看,星星!✨
169188## Star History
170-
171189[ ![ Star History Chart] ( https://api.star-history.com/svg?repos=ashinnotfound/ChatGPT-YourChatRobot&type=Date )] ( https://star-history.com/#ashinnotfound/ChatGPT-YourChatRobot&Date )
0 commit comments