[improvement][chat]Sort parses in NL2SQLParser right after rule-based parsing.

This commit is contained in:
jerryjzhang
2024-10-29 23:31:02 +08:00
parent 847505b293
commit 53ddc67262
12 changed files with 23 additions and 59 deletions

View File

@@ -157,7 +157,7 @@ public class Text2SQLEval extends BaseTest {
private static DatasetTool getDatasetTool() {
DatasetTool datasetTool = new DatasetTool();
datasetTool.setType(AgentToolType.DATASET);
datasetTool.setDataSetIds(Lists.newArrayList(-1L));
datasetTool.setDataSetIds(Lists.newArrayList(1L));
return datasetTool;
}