forked from lxh/go-wxhelper
🎨 逻辑优化
This commit is contained in:
parent
eb2e292e8e
commit
6acb3b79ec
@ -123,6 +123,12 @@ func AI(m *plugin.MessageContext) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 返回消息为空
|
||||||
|
if resp.Choices[0].Message.Content == "" {
|
||||||
|
utils.SendMessage(m.FromUser, m.GroupUser, "AI似乎抽风了,没有告诉我你需要的回答~", 0)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
// 保存一下AI 返回的消息,消息 Id 使用传入 Id 的负数
|
// 保存一下AI 返回的消息,消息 Id 使用传入 Id 的负数
|
||||||
var replyMessage entity.Message
|
var replyMessage entity.Message
|
||||||
replyMessage.MsgId = -m.MsgId
|
replyMessage.MsgId = -m.MsgId
|
||||||
|
Loading…
Reference in New Issue
Block a user