go-bot/test/test.go
liyp 8ca0d27976 feat(config): 动态修改AI模型配置
通过新增的ModifyConfig函数,现在可以在运行时动态修改AI的配置,包括更换模型。
2024-07-01 10:05:42 +08:00

31 lines
653 B
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 main
import (
"bufio"
"fmt"
"go-bot/workers"
"os"
"strings"
)
func main() {
for {
reader := bufio.NewReader(os.Stdin)
// cfg := config.GetConfig()
// config.PrintConfig(cfg, "")
fmt.Print("输入指令(不要带/)")
raw_msg, _ := reader.ReadString('\n')
// 去除末尾的换行符
// raw_msg = strings.TrimRight(raw_msg, "\r\n")
if raw_msg == "" {
raw_msg = "ping"
}
parms := strings.Fields(raw_msg)
worker := workers.NewWorker(parms, "794508986", "111", "111", "222", raw_msg)
fmt.Println("TestPermission:", worker.CheckPermission())
message := worker.GetMsg()
fmt.Println("message:", message)
}
}