[improvement](Headless) Adding change event to tags and integrating tag into embeddings (#792)

This commit is contained in:
lexluo09
2024-03-06 16:13:20 +08:00
committed by GitHub
parent 475e071341
commit 3cccac58a1
8 changed files with 53 additions and 25 deletions

View File

@@ -12,7 +12,7 @@ public enum DictWordType {
DIMENSION("dimension"),
VALUE("value"),
VALUE("v"),
VIEW("view"),
@@ -20,7 +20,7 @@ public enum DictWordType {
NUMBER("m"),
TAG("tag"),
TAG("t"),
SUFFIX("suffix");
@@ -45,7 +45,7 @@ public enum DictWordType {
return dictWordType;
}
}
//domain
//view
String[] natures = nature.split(DictWordType.NATURE_SPILT);
if (natures.length == 2 && StringUtils.isNumeric(natures[1])) {
return VIEW;