2023-11-13 13:32:42 +08:00
|
|
|
package handler
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2023-11-13 13:43:59 +08:00
|
|
|
"fmt"
|
2023-11-13 13:32:42 +08:00
|
|
|
"github.com/sashabaranov/go-openai"
|
|
|
|
"go-wechat/config"
|
|
|
|
"go-wechat/entity"
|
|
|
|
"go-wechat/utils"
|
2023-11-13 13:43:59 +08:00
|
|
|
"log"
|
2023-11-13 13:32:42 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
// handleAtMessage
|
|
|
|
// @description: 处理At机器人的消息
|
|
|
|
// @param m
|
|
|
|
func handleAtMessage(m entity.Message) {
|
|
|
|
if !config.Conf.Ai.Enable {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
// 默认使用AI回复
|
2023-11-13 13:43:59 +08:00
|
|
|
conf := openai.DefaultConfig(config.Conf.Ai.ApiKey)
|
|
|
|
if config.Conf.Ai.BaseUrl != "" {
|
|
|
|
conf.BaseURL = fmt.Sprintf("%s/v1", config.Conf.Ai.BaseUrl)
|
|
|
|
}
|
|
|
|
client := openai.NewClientWithConfig(conf)
|
2023-11-13 13:32:42 +08:00
|
|
|
resp, err := client.CreateChatCompletion(
|
|
|
|
context.Background(),
|
|
|
|
openai.ChatCompletionRequest{
|
|
|
|
Model: openai.GPT3Dot5Turbo0613,
|
|
|
|
Messages: []openai.ChatCompletionMessage{
|
|
|
|
{
|
|
|
|
Role: openai.ChatMessageRoleUser,
|
|
|
|
Content: m.Content,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
|
|
|
if err != nil {
|
2023-11-13 13:43:59 +08:00
|
|
|
log.Printf("OpenAI聊天发起失败: %v", err.Error())
|
2023-11-13 13:32:42 +08:00
|
|
|
utils.SendMessage(m.FromUser, m.GroupUser, "AI炸啦~", 0)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// 发送消息
|
2023-11-13 16:58:52 +08:00
|
|
|
utils.SendMessage(m.FromUser, m.GroupUser, "\n"+resp.Choices[0].Message.Content, 0)
|
2023-11-13 13:32:42 +08:00
|
|
|
}
|