This commit is contained in:
renzhiyuan 2025-03-27 23:14:15 +08:00
parent 8a6645c33c
commit 3296b47211
2 changed files with 2 additions and 2 deletions

2
ai.go
View File

@ -25,7 +25,7 @@ type QuesStruct struct {
}
func GetCategory(ctx context.Context, goodsName, key, chatModel string, catePath []map[int][]*CategoryDic) (cate3 int, err error) {
cate1Json, _ := json.Marshal(catePath[0][0])
cate1Json, _ := json.Marshal(catePath[0][1])
cate1, err := ques(ctx, goodsName, key, chatModel, cate1Json)
if err != nil {
return

View File

@ -16,7 +16,7 @@ const (
func TestCategory(t *testing.T) {
path := getPath()
res, err := GetCategory(context.Background(), "倍轻松头部按摩器\niDream 3尊享版", "914ccf1d-c002-4fad-a431-f291f5e0d2ad", modelType, path)
res, err := GetCategory(context.Background(), "MM 便携装湿厕纸 40包*10片@默认", "03320e58-6a0b-4061-a22b-902039f2190d", modelType, path)
t.Log(res, err)
}