coai/api/utils.go
2023-08-11 22:03:57 +08:00

71 lines
2.1 KiB
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package api
import (
"chat/types"
"chat/utils"
"chat/web"
"fmt"
"math/rand"
"strings"
"time"
)
func ChatWithWeb(message []types.ChatGPTMessage) (string, []types.ChatGPTMessage) {
keyword := strings.TrimSpace(SearchWeb(message))
if len(keyword) == 0 {
return keyword, message
}
return keyword, utils.Insert(message, 0, types.ChatGPTMessage{
Role: "system",
Content: fmt.Sprintf("你将扮演AI问答助手你的知识库不是截止于2021年9月而是可以实时联网的你可以提供实时联网的知识库。"+
"官网网站使用链接包裹,给予用户精确的答复。"+
"当前时间: %s, 你的知识库:%s",
time.Now().Format("2006-01-02 15:04:05"), web.SearchBing(keyword),
),
})
}
func GetRandomKey(apikey string) string {
arr := strings.Split(apikey, "|")
idx := rand.Intn(len(arr))
return arr[idx]
}
func StringCleaner(content string) string {
for _, replacer := range []string{",", "、", "", "。", "", ":", "", ";", "", "!", "", "?", "", "", "(", ")", "关键字", "空"} {
content = strings.ReplaceAll(content, replacer, " ")
}
return strings.TrimSpace(content)
}
func SearchWeb(message []types.ChatGPTMessage) string {
resp, _ := GetChatGPTResponse([]types.ChatGPTMessage{{
Role: "system",
Content: "If the user input content require ONLINE SEARCH to get the results, please output these keywords to refine the data Interval with space, remember not to answer other content, json format return, format {\"keyword\": \"...\" }",
}, {
Role: "user",
Content: "你是谁",
}, {
Role: "assistant",
Content: "{\"keyword\":\"\"}",
}, {
Role: "user",
Content: "那fystart起始页是什么 和深能科创有什么关系",
}, {
Role: "assistant",
Content: "{\"keyword\":\"fystart起始页 深能科创 关系\"}",
}, {
Role: "user",
Content: "1+1=?",
}, {
Role: "assistant",
Content: "{\"keyword\":\"\"}",
}, {
Role: "user",
Content: message[len(message)-1].Content,
}}, 40)
keyword := utils.UnmarshalJson[map[string]interface{}](resp)
return StringCleaner(keyword["keyword"].(string))
}