update
This commit is contained in:
parent
a317767ae7
commit
9b70685949
@ -30,12 +30,13 @@ public class ApplicationInit implements ApplicationRunner {
|
||||
if (time.equals(oldTime)) {
|
||||
return;
|
||||
}
|
||||
BaiduGPTManager.getManager().clear();
|
||||
oldTime = time;
|
||||
for (Class<?> model : Model.classList) {
|
||||
new Thread(() -> {
|
||||
try {
|
||||
Bot bot = QQBotManager.getInstance().getBot();
|
||||
if(bot==null){
|
||||
if (bot == null) {
|
||||
return;
|
||||
}
|
||||
Model useModel = (Model) model.getDeclaredConstructor().newInstance();
|
||||
|
@ -63,6 +63,10 @@ public class BaiduGPTManager {
|
||||
String post = HttpTools.post(url + "?access_token=" + getToken()
|
||||
, json.toJSONString().getBytes(StandardCharsets.UTF_8));
|
||||
System.out.println("post = " + post);
|
||||
if(StringUtils.isEmpty(post)){
|
||||
clear();
|
||||
return sendMessage(user, message);
|
||||
}
|
||||
ResponseMessage response = JSONObject.parseObject(post, ResponseMessage.class);
|
||||
messages.add(Message.create(response.getResult(), true));
|
||||
msgMap.put(user, messages);
|
||||
|
Loading…
Reference in New Issue
Block a user