mirror of
https://github.com/ikechan8370/chatgpt-plugin.git
synced 2025-12-17 22:07:10 +00:00
小优化 (#408)
This commit is contained in:
parent
e47f18a5aa
commit
fde029cd91
1 changed files with 2 additions and 2 deletions
|
|
@ -1089,7 +1089,7 @@ export class chatgpt extends plugin {
|
||||||
if (useTTS) {
|
if (useTTS) {
|
||||||
// 缓存数据
|
// 缓存数据
|
||||||
this.cacheContent(e, use, response, prompt, quotemessage, mood, chatMessage.suggestedResponses, imgUrls)
|
this.cacheContent(e, use, response, prompt, quotemessage, mood, chatMessage.suggestedResponses, imgUrls)
|
||||||
if (response.match('New topic')) {
|
if (response === 'Thanks for this conversation! I\'ve reached my limit, will you hit “New topic,” please?') {
|
||||||
this.reply('当前对话超过上限,已重置对话', false, { at: true })
|
this.reply('当前对话超过上限,已重置对话', false, { at: true })
|
||||||
await redis.del(`CHATGPT:CONVERSATIONS_BING:${e.sender.user_id}`)
|
await redis.del(`CHATGPT:CONVERSATIONS_BING:${e.sender.user_id}`)
|
||||||
return false
|
return false
|
||||||
|
|
@ -1208,7 +1208,7 @@ export class chatgpt extends plugin {
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
this.cacheContent(e, use, response, prompt, quotemessage, mood, chatMessage.suggestedResponses, imgUrls)
|
this.cacheContent(e, use, response, prompt, quotemessage, mood, chatMessage.suggestedResponses, imgUrls)
|
||||||
if (response.match('New topic')) {
|
if (response === 'Thanks for this conversation! I\'ve reached my limit, will you hit “New topic,” please?') {
|
||||||
this.reply('当前对话超过上限,已重置对话', false, { at: true })
|
this.reply('当前对话超过上限,已重置对话', false, { at: true })
|
||||||
await redis.del(`CHATGPT:CONVERSATIONS_BING:${e.sender.user_id}`)
|
await redis.del(`CHATGPT:CONVERSATIONS_BING:${e.sender.user_id}`)
|
||||||
return false
|
return false
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue