This commit is contained in:
yutou 2023-09-13 10:47:38 +08:00
parent a317767ae7
commit 9b70685949
2 changed files with 6 additions and 1 deletions

View File

@ -30,6 +30,7 @@ public class ApplicationInit implements ApplicationRunner {
if (time.equals(oldTime)) {
return;
}
BaiduGPTManager.getManager().clear();
oldTime = time;
for (Class<?> model : Model.classList) {
new Thread(() -> {

View File

@ -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);