Skip to content

Commit

Permalink
fix: aireply: 修复文字回复模式
Browse files Browse the repository at this point in the history
更新桑帛云api,添加key设置

Signed-off-by: Sean Du <[email protected]>
  • Loading branch information
YumeMichi committed Aug 21, 2024
1 parent 89a5b68 commit c4e6dca
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 7 deletions.
15 changes: 8 additions & 7 deletions plugin/aireply/ai_tts.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ var (
= newapikeystore("./data/tts/o.txt")
ཆཏ = newapikeystore("./data/tts/c.txt")
= newapikeystore("./data/tts/b.txt")
= newapikeystore("./data/tts/s.txt")
)

type replymode []string
Expand Down Expand Up @@ -89,6 +90,7 @@ func (r replymode) setReplyMode(ctx *zero.Ctx, name string) error {
}

func (r replymode) getReplyMode(ctx *zero.Ctx) aireply.AIReply {
k := .k
gid := ctx.Event.GroupID
if gid == 0 {
gid = -ctx.Event.UserID
Expand All @@ -97,22 +99,21 @@ func (r replymode) getReplyMode(ctx *zero.Ctx) aireply.AIReply {
if ok {
switch m.GetData(gid) & 0xff {
case 0:
return aireply.NewLolimiAi(aireply.JingfengURL, aireply.JingfengBotName)
return aireply.NewLolimiAi(aireply.JingfengURL, k, aireply.JingfengBotName)
case 1:
return aireply.NewLolimiAi(aireply.MomoURL, aireply.MomoBotName)
return aireply.NewLolimiAi(aireply.MomoURL, k, aireply.MomoBotName)
case 2:
return aireply.NewQYK(aireply.QYKURL, aireply.QYKBotName)
case 3:
return aireply.NewXiaoAi(aireply.XiaoAiURL, aireply.XiaoAiBotName)
case 4:
k := ཆཏ.k
if k != "" {
return aireply.NewChatGPT(aireply.ChatGPTURL, k)
if ཆཏ.k != "" {
return aireply.NewChatGPT(aireply.ChatGPTURL, ཆཏ.k)
}
return aireply.NewLolimiAi(aireply.JingfengURL, aireply.JingfengBotName)
return aireply.NewLolimiAi(aireply.JingfengURL, k, aireply.JingfengBotName)
}
}
return aireply.NewLolimiAi(aireply.JingfengURL, aireply.JingfengBotName)
return aireply.NewLolimiAi(aireply.JingfengURL, k, aireply.JingfengBotName)
}

var ttsins = func() map[string]tts.TTS {
Expand Down
8 changes: 8 additions & 0 deletions plugin/aireply/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,14 @@ func init() { // 插件主体
ctx.SendChain(message.Reply(ctx.Event.MessageID), message.Text("成功"))
}
enr.OnPrefix("设置文字回复模式", zero.AdminPermission).SetBlock(true).Handle(setReplyMode)
enr.OnRegex(`^设置\s*桑帛云\s*api\s*key\s*(.*)$`, zero.OnlyPrivate, zero.SuperUserPermission).SetBlock(true).Handle(func(ctx *zero.Ctx) {
err := .set(ctx.State["regex_matched"].([]string)[1])
if err != nil {
ctx.SendChain(message.Text("ERROR: ", err))
return
}
ctx.SendChain(message.Text("设置成功"))
})
enr.OnRegex(`^设置\s*ChatGPT\s*api\s*key\s*(.*)$`, zero.OnlyPrivate, zero.SuperUserPermission).SetBlock(true).Handle(func(ctx *zero.Ctx) {
err := ཆཏ.set(ctx.State["regex_matched"].([]string)[1])
if err != nil {
Expand Down

0 comments on commit c4e6dca

Please sign in to comment.