(feature)(chat)Introduce new plain_text mode to allow users to talk to LLM directly. (#1224)

This commit is contained in:
Jun Zhang
2024-06-25 21:16:02 +08:00
committed by GitHub
parent 7f91993084
commit c64aa62456
15 changed files with 112 additions and 25 deletions

View File

@@ -21,7 +21,7 @@ import java.util.TreeSet;
public class SemanticParseInfo {
private Integer id;
private String queryMode;
private String queryMode = "PLAIN_TEXT";
private SchemaElement dataSet;
private Set<SchemaElement> metrics = new TreeSet<>(new SchemaNameLengthComparator());
private Set<SchemaElement> dimensions = new LinkedHashSet();