(improvement)(Headless) Supports batch creation of models by specifying db table names (#1833)

Co-authored-by: lxwcodemonkey
This commit is contained in:
LXW
2024-10-20 20:17:11 +08:00
committed by GitHub
parent 1f208ffcb7
commit 1d84e00887
7 changed files with 53 additions and 28 deletions

View File

@@ -1,6 +1,7 @@
package com.tencent.supersonic.headless.api.pojo.request;
import com.tencent.supersonic.common.pojo.ChatModelConfig;
import java.util.List;
import lombok.Data;
@Data
@@ -12,9 +13,11 @@ public class ModelSchemaReq {
private String db;
private String table;
private List<String> tables;
private boolean buildByLLM;
private Integer chatModelId;
private ChatModelConfig chatModelConfig;
}